我赞美你品格高尚,崇敬你洁白无瑕。我爱你、想你、盼你,像对每一个季节那样。我爱你、想你、盼你,不管世俗的偏见怎样厉害。冬――四季之一的冬,你来吧!我喜欢你纯净的身躯,喜欢你严厉的性格,我要在你的怀抱中锻炼、奋斗、成熟……你可以和春天的万花,夏天的麦浪,秋天的瓜果……比美!
本文实例讲述了jQuery实现表格的增、删、改操作。分享给大家供大家参考,具体如下:
这里实现的是在jQuery中通过按钮的形式,对表格进行的一些基本操作,可以实现表格的增删改操作,并实现对鼠标事件监听,实现表格的高亮行操作。
<head> <meta charset="UTF-8"> <title>www.haodaima.com jQuery表格操作</title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { //添加一行 $("#one").click(function() { var $td = $("#trOne").clone(); $("table").append($td); $("table tr:last").find("input").val(""); }); //删除一行 $("#two").click(function() { $("table tr:not(:first):last").remove(); }); //删除所有行 $("#three").click(function() { /*var len=$("tr").length; for(var i=0;i<=len;i++){ $("tr")[i].remove(); }*/ //除第一行为其它行删除 $("tr:not(:first)").remove(); }); //删除选中的行 $("#four").click(function() { //遍历选中的checkbox $("[type='checkbox']:checked").each(function() { //获取checkbox所在行的顺序 n = $(this).parents("tr").index(); $("table").find("tr:eq(" + n + ")").remove(); }); }); //设置高亮行 $("tr").mouseover(function() { $(this).css("background-color","red"); }); $("tr").mouseout(function(){ $(this).css("background-color","white"); }); }); </script> </head> <body> <input type="button" id="one" value="添加一行" /><br /> <input type="button" id="two" value="删除一行" /><br /> <input type="button" id="three" value="删除所有行" /><br /> <input type="button" id="four" value="删除选中的行" /><br /> <table width="400px" height="50px" border="2px" cellspacing="0" cellpadding="0"> <tr id="trOne"> <td><input type="checkbox" name=""></td> <td><input type="" name="" value="姓名" </td> <td><input type="" name="" value="年龄" </td> <td><input type="" name="" value="性别" </td> </tr> <tr> <td><input type="checkbox" name=""></td> <td><input type="" name="" value="张三" </td> <td><input type="" name="" value="18" </td> <td><input type="" name="" value="男" </td> </tr> <tr> <td><input type="checkbox" name=""></td> <td><input type="" name="" value="李四" </td> <td><input type="" name="" value="18" </td> <td><input type="" name="" value="男" </td> </tr> <tr> <td><input type="checkbox" name=""></td> <td><input type="" name="" value="王五" </td> <td><input type="" name="" value="18" </td> <td><input type="" name="" value="男" </td> </tr> </table> </body>
效果图如下:
感兴趣的朋友可以使用在线HTML/CSS/JavaScript代码运行工具:http://tools.haodaima.com/code/HtmlJsRun测试上述代码运行效果。
希望本文所述对大家jQuery程序设计有所帮助。
本文jQuery实现表格的增、删、改操作示例到此结束。做一个精彩的自己,跟着自己的直觉走,别怕失去,别怕失败,别怕路远,做了才有对错,经历才有回忆。小编再次感谢大家对我们的支持!