function RemoveRow() { intLine = document.newproject.hdnMaxLine.value alert(intLine) if(parseInt(intLine) > 1) { alert(intLine) theTable = document.getElementById("tbaddwork"); theTableBody = theTable.tBodies[0]; theTableBody.deleteRow(intLine); intLine--; document.newproject.hdnMaxLine.value = intLine; } }
<script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script> $('document').ready(function(){ $('#remove').hide(); $('#addrow').click(function(){ if(($('#tb tr').size()) > 1){ $('#remove').show(); } var no = parseInt($('#tb tr').length)+1; $('#tb tr:last').after( '<tr><td>'+no+'</td>'+ '<td><input type="text" id="txt" name="txt[]"></td>'+ '<td><select id="ddl" name="ddl[]">'+ '<option>--select one--</option>'+ '<option value="A">option A</option>'+ '<option value="B">option B</option>'+ '</select>'+ '</td></tr>' ); }); $('#remove').click(function(){ $('#tb tr:last').remove(); if(($('#tb tr').size())==1){ $('#remove').hide(); } }); }); </script> <table id="tb"> <tr> <td>1.</td> <td><input type="text" id="txt" name="txt[]"></td> <td> <select id="ddl" name="ddl[]"> <option>--select one--</option> <option value="A">option A</option> <option value="B">option B</option> </select> <button id="addrow">Add row</button><button id="remove">Remove</button></td> </tr> </table>
function RemoveRow() { var intLine = document.newproject.hdnMaxLine.value //alert(intLine) if(parseInt(intLine) > 1) { //alert(intLine) var theTable = document.getElementById("tbaddwork"); var theTableBody = theTable.tBodies[0]; theTableBody.deleteRow(intLine); intLine--; document.newproject.hdnMaxLine.value = intLine; } }
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง