<script language="javascript" src="js/jquery-1.4.1.min.js"></script> <script type="text/javascript"> $(function(){ $("#addRow").click(function(){ $("#firstTr:eq(0)").clone(true) .find("input").attr("value","").end() .appendTo($("#myTbl")); }); $("#removeRow").click(function(){ if($("#myTbl tr").size()>2){ $("#myTbl tr:last").remove(); }else{ alert("ต้องมีรายการข้อมูลอย่างน้อย 1 รายการ"); } }); }); </script> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"> <BR> <table border="0" cellspacing="2" cellpadding="2" align="center" width="700"> <tr><td colspan="2" class="Title2">รายการ <span id="loading"></span></td></tr> <tr><td background="../images/dot.gif" height="4" colspan="2"></td></tr> </table> <table id="myTbl" border="1" cellspacing="0" cellpadding="5" align="center" width="500"> <tr class="table_header_1"> <td width="30" align="center">No</td> <td width="150" align="center">หน่วยนับ</td> <td width="150" align="center">หน่วยบรรจุ</td> <td width="150" align="center">LOT NO.</td> </tr> <?php $run=0; if($run%2!=0){ $bgcolor="bgcolor='".$bgcolor_swap."'"; $color_row=$bgcolor_swap; }else{ $bgcolor="bgcolor='".$bgcolor_swap2."'"; $color_row=$bgcolor_swap2; } ?> <tr id="firstTr" class="txt_black_5901" <?=$bgcolor?> onMouseover="this.bgColor='#fedbdb'" onMouseout="this.bgColor='<?=$color_row?>'"> <td align="center"><span><?php echo ++$run; ?></span></td> <td align="right"><input type='text' size="8" > </td> <td align="right"><input type='text' size="8" > </td> <td align="right"><input type='text' size="8" > </td> </tr> </table> <table border="1" cellspacing="0" cellpadding="2" align="center" width="500"> <tr bgcolor="#d3cdaf" class="table_header_1"> <td width="35" align="center"></td> <td width="150" align="right">0</td> <td width="150" align="right">0</td> <td width="150" align="right">0</td> </tr> </table> <table border="0" cellspacing="2" cellpadding="5" align="center" width="500"> <tr> <td><button id="addRow" type="button">+</button> <button id="removeRow" type="button">-</button> </td><td align="left" width="55%"> <button id="Submit" type="submit">บันทึกรายการ</button> </td> </tr> </table> <tr bgcolor="#d3cdaf"> <td height="2" colspan="5"></td> </tr> </table>
<button id="add" type="button">+</button> <button id="remove" type="button">-</button> <table id="myTbl"> <thead> <tr> <th>No</th> <th>Name</th> </tr> </thead> <tbody> <tr> <td><span>1</span></td> <td><input type="text" /></td> </tr> </tbody> </table>
$("#add").click(function () { var row = $("#myTbl >tbody >tr").length; $("#myTbl >tbody >tr:first").clone(true) .find("span").html(row + 1).end() .appendTo($("#myTbl >tbody")); }); $("#remove").click(function () { if ($("#myTbl >tbody >tr").length > 1) { $("#myTbl >tbody >tr:last").remove(); } else { alert("ต้องมีรายการข้อมูลอย่างน้อย 1 รายการ"); } });
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง