BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>BootWiki 教程网</title> <script> function deleteRow(r){ var i=r.parentNode.parentNode.rowIndex; document.getElementById('myTable').deleteRow(i); } </script> </head> <body> <table border="1" id="myTable"> <tr> <td>行 1</td> <td><input onclick="deleteRow(this)" type="button" value="删除"></td> </tr> <tr> <td>行 2</td> <td><input onclick="deleteRow(this)" type="button" value="删除"></td> </tr> <tr> <td>行 3</td> <td><input onclick="deleteRow(this)" type="button" value="删除"></td> </tr> </table> </body> </html>
运行结果