javascript删除行的实现方法:首先新建一个html文件;然后在标签中输入代码“click(function () {$(this).parent().parent().remove();});”即可。</p></blockquote> <p><img src="https://img.php.cn/upload/article/202103/30/2021033014372260357.jpg" alt="javascript怎么删除行" ></p> <p>本文操作环境:windows7系统、javascript1.8.5版,DELL G3电脑。</p> <p>1、首先,打开html编辑器,新建html文件,例如:index.html,插入需要的表格。</p> <p><img src="https://img.php.cn/upload/image/109/720/829/1617086356685562.png" title="1617086356685562.png" alt="9e97d2237ff2a56f17ed9f2bd4ccdcb.png"></p> <p>2、之后在index.html的<script>标签中,输入代码:<code>$('button').click(function () {$(this).parent().parent().remove();});</code>。</p> <p><img src="https://img.php.cn/upload/image/280/176/962/1617086360228786.png" title="1617086360228786.png" alt="1b0802fc7d19589c010687d7250098b.png"></p> <p>3、浏览器运行index.html页面,点击第1行的删除按钮,确实删除了第1行,并且代码不是以行号的形式。</p> <p><img src="https://img.php.cn/upload/image/527/632/610/1617086364290592.png" title="1617086364290592.png" alt="aa33999d61ff2da549c99c5b703e633.png"></p> <p>【推荐学习:<a href="https://www.php.cn/course/list/2.html" target="_blank">js基础教程</a>】</p>