jQuery动态增减行的实例代码解析(推荐)
网络编程 2021-07-04 19:19www.168986.cn编程入门
这篇文章主要介绍了jQuery动态增减行的实例代码解析,本文图文并茂给大家介绍的非常详细,具有参考借鉴价值,需要的朋友可以参考下
先给大家展示下效果图
这是没有增加时的界面
增加后的界面
删除后的界面
原因分析
不擅长jquery和JavaScript
场景
代码如下
<table class="table table-bordered"> <thead> <tr> <th style="width: 10px">輪次</th> <th style="width: 100%">比賽時間</th> <th>比賽場地</th> <th>主隊</th> <th>主隊得分</th> <th>客隊</th> <th>客隊得分</th> <th>比賽結果</th> <th>删除</th> </tr> </thead> <tbody id="Games_tbody"> <tr> <td> <input type="number" style="width: 40px"/> </td> <td> <input type="date" style="width: 140px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="number" style="width: 80px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="number" style="width: 80px"/> </td> <td> <input type="text" style="width: 40px"/> </td> <td> <button type="button" class="btn btn-danger btn-xs" id="delete" onclick="$(this).parent('td').parent('tr').remove()">删除</button> </td> </tr> <tr> <td> <input type="number" style="width: 40px"/> </td> <td> <input type="date" style="width: 140px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="number" style="width: 80px"/> </td> <td> <input type="text" style="width: 140px"/> </td> <td> <input type="number" style="width: 80px"/> </td> <td> <input type="text" style="width: 40px"/> </td> <td> <button type="button" class="btn btn-danger btn-xs" id="delete" onclick="$(this).parent('td').parent('tr').remove()">删除</button> </td> </tr> </tbody> </table> <button type="button" id="add_game"class="btn btn-primary btn-md"> <span class="glyphicon glyphicon-plus-sign"></span> </button> <button type="button" id="reduce_game" class="btn btn-primary btn-md"> <span class="glyphicon glyphicon-minus-sign"></span> </button>
解决方案
增加在tbody后直接增加自定义好的html变量,使用append方法就好了
jquery代码如下
<script src="../jQuery/jquery-2.2.3.min.js"></script> <!-- Bootstrap 3.3.6 --> <script src="../bootstrap/js/bootstrap.min.js"></script> <!-- Morris.js charts --> <script src="../morris/morris.min.js"></script> <!-- FastClick --> <script src="../fastclick/fastclick.js"></script> <!-- AdminLTE App --> <script src="../dist/js/app.min.js"></script> <!-- AdminLTE for demo purposes --> <script src="../dist/js/demo.js"></script> <!-- page script --> <script type="text/javascript"> function deleteCol() { alert("delete col method"); alert(this.tagName); //$(this).parent("td").parent("tr").remove(); } </script> <script> $(document).ready(function () { // 增加行 var trEle='<tr>'+ '<td><input type="number" style="width: 40px"/>'+'</td>'+ '<td><input type="date" style="width: 140px"/>'+'</td>'+ '<td><input type="text" style="width: 140px"/>'+'</td>'+ '<td><input type="text" style="width: 140px"/>'+'</td>'+ '<td><input type="number" style="width: 80px"/>'+'</td>'+ '<td><input type="text" style="width: 140px"/>'+'</td>'+ '<td><input type="number" style="width: 80px"/>'+'</td>'+ '<td><input type="text" style="width: 40px"/>'+'</td>'+ '<td><button type="button" class="btn btn-danger btn-xs" id="delete" onclick="$(this).parent('+ "'td').parent('tr').remove()"+ '">删除</button></td></tr>' $("#add_game").click(function(e){ $("#Games_tbody").append(trEle); }); //删除行数,绑定在html中的button Click事件中了 }); </script> 问题原因 jquery没有onclick()函数,这里可以用(不知道为什么,因为我是菜鸟),不知道使用each()函数是否可以使用。不知道为什么直接使用狼蚁网站SEO优化代码不可以用 $(".btn-danger").click(function(){ $(this).parent('td').parent(‘tr').remove(); });
只能选择第一个,后面的就没办法选定了。
在解决的过程中,我借用了这篇博客
发现原来页面上的可以实现删除,动态增加后的行数,却无法删除
还是借用了
http://bbs.csdn./ics/390917779
这里面的一个回答,才发现原来函数可以直接卸载html里面。而在增加行中,也可以使用clone函数,会更加方便,也就是第二种方法。
第二种方法,选择tr属性,然后借用clone(),代码如下
$("#add_game").click(function(e){ //$("#Games_tbody").append(trEle); 第一种方法 //第二种方法 $("#Games_tbody>tr:first").clone(true).appendTo($("#Games_tbody")); });
也可以实现增加行,,点击删除也可以,(在上面提过的这篇博客
这时可以删除,好奇怪!)
来说,通过拼接html来实现增加的行数无法实现删除按钮,解决方法是把删除方法绑定在html中。
,如果,你的行数是通过clone()方法来实现的话,可以实现删除按钮。
以上所述是长沙网络推广给大家介绍的jQuery动态增减行的实例代码解析(推荐),希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
上一篇:jquery删除数组中重复元素
下一篇:DOM 事件的深入浅出(二)
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程