<html> <head> <script type="text/javascript"> function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; if(rowCount < 10){ // limit the user from creating fields more than your limits = 10 row var row = table.insertRow(rowCount); var colCount = table.rows[0].cells.length; for(var i=0; i < colCount; i++) { var newcell = row.insertCell(i); newcell.innerHTML = table.rows[0].cells[i].innerHTML; } }else{ alert("Please enter the required information"); } } function deleteRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; for(var i=0; i<rowCount; i++) { var row = table.rows[i]; var chkbox = row.cells[0].childNodes[0]; if(null != chkbox && true == chkbox.checked) { if(rowCount <= 1) { // limit the user from removing all the fields = 1 row alert("Cannot delete all data"); break; } table.deleteRow(i); rowCount--; i--; } } } </script> </head> <body> <form> <table> <tr> <td> <table> <tr> <td> <input type="button" value=" + " onClick="addRow('dataTable')" /> <input type="button" value=" - " onClick="deleteRow('dataTable')" /> </td> </tr> </table> </td> </tr> <tr> <td> <table id="dataTable"> <tr> <td><input type="checkbox" name="chk[]" id="chk" checked/> <input name="nR" type="radio" value="yes" />yes</span> <input name="nR" type="radio" value="no" />no </td> </tr> </table> </td> </tr> </table> </form> </body> </html>
<html> <head></head> <body> <form> <table> <tr> <td> <table> <tr> <td> <input type="button" value=" + " onClick="addRow('dataTable')" /> <input type="button" value=" - " onClick="deleteRow('dataTable')" /> </td> </tr> </table> </td> </tr> <tr> <td> <table id="dataTable"> <tr> <td><input type="checkbox" name="chk[]" id="chk" checked/> <input name="nR1" type="radio" value="yes" />yes <input name="nR1" type="radio" value="no" />no </td> </tr> </table> </td> </tr> </table> </form> <script type="text/javascript"> function addRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; if(rowCount < 10){ // limit the user from creating fields more than your limits = 10 row var row = table.insertRow(rowCount); row.innerHTML = '<td><input type="checkbox" name="chk[]" id="chk" checked/> <input name="nR'+ (rowCount+1) +'" type="radio" value="yes" />yes<input name="nR'+ (rowCount+1) +'" type="radio" value="no" />no</td>'; }else{ alert("Please enter the required information"); } } function deleteRow(tableID) { var table = document.getElementById(tableID); var rowCount = table.rows.length; for(i=0; i<rowCount; i++) { var row = table.rows[i]; var chkbox = row.cells[0].childNodes[0]; if(null != chkbox && true == chkbox.checked) { if(rowCount <= 1) { // limit the user from removing all the fields = 1 row alert("Cannot delete all data"); break; } table.deleteRow(i); rowCount--; i--; } } } </script> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง