<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <script type="text/javascript" src="jquery-1.7.2.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#add_item').click(function(){ $('#mytbl tbody tr').last().clone().appendTo('#mytbl tbody'); }); }); function doRemoveItem(obj){ if($('#mytbl tbody tr').size() > 1){ if(confirm('คุณต้องการลบแถวนี้?')) $(obj).parent().parent().remove(); }else{ alert('ไม่อนุญาตให้ลบแถวที่เหลือนี้ได้'); } } </script> </head> <body> <form id="form1" name="form1" method="post" action="result2.php"> <table id="mytbl" width="600" cellspacing="1" cellpadding="1" align="center" border="1"> <thead> <tr> <td align="center">System</td> <td align="center">Code</td> <td align="center">Name</td> <td align="middle" width="24"> </td> </tr> </thead> <tbody> <tr> <td align="center"><input type="text" name="data1[]" id="data1[]" /></td> <td align="center"><input type="text" name="data2[]" id="data2[]" /></td> <td align="center"><input type="text" name="data3[]" id="data3[]" /></td> <td align="center"><input type="button" onclick="javascript:doRemoveItem(this);" style="width:22px;" value="-" /></td> </tr> </tbody> </table> <div style="margin:5px auto 0px auto;"> <input type="button" id="add_item" name="add_item" value="เพิ่มแถว" /> </div> <br /> <input type="submit" name="button" id="button" value="Submit" /> </form> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Multirows Insert</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(function(){ $("#addRow").click(function(){ var NR =""; NR="<tr>"; NR+="<td width=\"140\">"; NR+="<input type=\"text\" name=\"name[]\" id=\"name[]\" />"; NR+="</td>"; NR+="</tr>"; //$("#myTbl").append($("#firstTr").clone()); $("#myTbl").append($(NR)); }); $("#removeRow").click(function(){ if($("#myTbl tr").size()>2){ $("#myTbl tr:last").remove(); }else{ alert("ต้องมีรายการข้อมูลอย่างน้อย 1 รายการ"); } }); }); </script> </head> <body> <form id="form1" name="form1" method="post" action="Showdata.php"> <p><button id="addRow" type="button">เพิ่มแถว</button> <button id="removeRow" type="button">ลบแถว</button> </p> <table id="myTbl" width="148" border="1" cellspacing="2" cellpadding="0"> <tr> <td align="center">NAME</td> </tr> <tr id="firstTr"> <td width="140"><input type="text" name="name[]" id="name[]" /></td> </tr> </table> <br /> <table width="500" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> </tr> </table> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง