-
使用javascript点击添加或删除一行
2018-8-16 16:12:6 技术收藏 次阅读 查看评论
<pre name="code" class="html"> <html> <head> <title>js-sample</title> <script type="text/javascript"> <!-- var count = 1; function add() { var tbl = document.all.ci; var rows = tbl.rows.length; var tr = tbl.insertRow(rows); var name = tr.insertCell(0); name.innerHTML = '<input type="text">'; var tel = tr.insertCell(1); tel.innerHTML = '<input type="text">'; var rdo = tr.insertCell(2); rdo.innerHTML = '<input type="radio" value="0" name="rdo' + count + '">Yes <input type="radio" value="1" name="rdo' + count + '">No'; var chk = tr.insertCell(3); chk.innerHTML = '<input type="checkbox" value="0" name="chk' + count + '">Modify <input type="checkbox" value="1" name="chk' + count + '">Delete'; var del = tr.insertCell(4); del.innerHTML = '<input type="button" onclick="del(this)" value="Delete">'; count++; } function del(btn) { var tr = btn.parentElement.parentElement; var tbl = tr.parentElement; tbl.deleteRow(tr.rowIndex-1); } //--> </script> </head> <body> <input type="button" onClick="add()" value="Add-Customer"> <table border="1" style="width:100%" id="ci" name="ci"> <caption>customer information</caption> <thead> <tr> <th>Name</th> <th>Tel</th> <th>Radio</th> <th>CheckBox</th> <th>?</th> </tr> </thead> <tbody> <tr> <td><input type="text" value="Zhang San"></td> <td><input type="text" value="111"></td> <td> <input type="radio" value="0" name="rdo">Yes <input type="radio" value="1" name="rdo">No </td> <td> <input type="checkbox" value="0" name="chk">Modify <input type="checkbox" value="1" name="chk">Delete </td> <td> <input type="button" onClick="del(this)" value="Delete"> </td> </tr> </tbody> </table> </body> </html>
相关日志:
- 2022-12-21 16:2:9 微软原版Windows系统安装盘制作工具Windows7-USB-DVD-tool
- 2022-9-25 19:30:13 Parallels Desktop 18 for Mac破解版下载(v18.0.2)
- 2021-4-9 20:12:44 Parallels Desktop 16.1.2 完美破解版下载
- 2021-1-5 0:6:58 Dell OptiPlex 7070MFF准系统 i7 9700翻车现场
- 2021-1-2 16:18:39 MacBook Pro及macOS的一些使用感受
- 2020-12-17 12:36:58 更新macOS Big Sur后Parallels Desktop 16新版遇到的问题
- 2020-11-14 23:11:15 与时俱进,网站也改个宽屏吧
- 2019-3-13 10:47:48 网页自动关闭的代码
- 2019-1-14 14:40:25 ASP简单获取浏览器UA(User Agent 用户代理)方法
- 2018-3-10 11:39:1 windows【上帝模式】,你没见过的完全控制面板
- 控制面板
-
- 文章分类
-
- 最新留言
-
- 搜索
-
- 网站收藏
-
- 友情链接
-
评论列表: