javascript怎么删除行
程序员文章站
2022-03-22 19:39:21
...
javascript删除行的实现方法:首先新建一个html文件;然后在<script>标签中输入代码“click(function () {$(this).parent().parent().remove();});”即可。
本文操作环境:windows7系统、javascript1.8.5版,DELL G3电脑。
1、首先,打开html编辑器,新建html文件,例如:index.html,插入需要的表格。
2、之后在index.html的<script>标签中,输入代码:$('button').click(function () {$(this).parent().parent().remove();});
。
3、浏览器运行index.html页面,点击第1行的删除按钮,确实删除了第1行,并且代码不是以行号的形式。
【推荐学习:js基础教程】
以上就是javascript怎么删除行的详细内容,更多请关注其它相关文章!