<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="button" value="删除"> <table border=1> <thead> <tr> <th><input type="checkbox"></th> <th>2</th> <th>3</th> <th>4</th> </tr> </thead> <tbody> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> <tr> <td><input type="checkbox"></td> <td>打两份工</td> <td>真的很高</td> <td><button>删除</button></td> </tr> </tbody> </table> </body> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"></script> <script> $(function(){ $("input[type=button]").click(function(){ $("tbody").find("input:checkbox:checked").each(function() { // 遍历选中的checkbox n = $(this).parents("tr").index(); // 获取checkbox所在行的顺序 $("tbody").find("tr:eq("+n+")").remove(); }); }); }); $(function(){ $("thead").find("input[type=checkbox]").click(function(){ var flag = $(this).prop("checked"); $("tbody").find("input[type=checkbox]").each(function() { // 遍历选中的checkbox $(this).prop("checked",flag); }); }); }); </script> </html>
js教程
jquery批量全选和反选教程
- jquery教程
-
jQuery获取file控件中图片的宽高与大小
jQuery获取file宽高的代码如下,仅在火狐中测试了,其他浏览器兼容性未知。var _URL = window.URL || window.webkitURL;$("#file").change(function (e) { var file, img; if ((file = this.files[0])) { img = new Image(); img.onload = func...
-
Jquery实战视频教程 6小时精通Jq
Jquery实战视频教程 6小时精通Jq,实现小应用,附带教程源码。视频教程列表第7章 自动以Alert第6章 标记完成状态、定时提醒第5章 Task详情第4章 添加及查看Task第3章 细节完善第2章 整体布局第1章 ...
-
JQuery鼠标移动添加删除样式
JQuery鼠标移动添加删除样式方法,下面为代码案列$("a").hover(function(){ $(this).find("b").show();},function(){ $(this).find("b").hide();})鼠标移到A标签触发事件,下面的B标签显示,后门的function就是鼠标移开隐藏。...
-
js返回上一页、刷新页面代码大全
返回上一页代码:<a href="javascript:history.go(-1)">返回上一页</a>onclick返回上一页代码:<a href="javasc...
-
js语言!=与!==的区别
!= (不等于)!= 是松散的不等于运算符。它在比较两个值时,会先进行类型转换(type coercion),然后再比较值是否不...
-
JS防止网站被扒的解决方法
这个代码能够直接保护整个站,而不再是单个页面,直接把代码放到自己的网站上,如果是博客建议放到header.php头部...
-
Hexo插件开发实战教程
Hexo的插件嵌入有两种方式,一种是通过脚本(Scripts)的方式引入,一种是通过插件(Packages)的方式将自定义的插件内...
-
JavaScript定时删除指定元素方法
JavaScript定时删除指定元素一般用到自动隐藏的效果功能上面,主要用到了JS的setTimeout语法。下面是一个定时...