博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前端:CheckBox事件函数js
阅读量:5975 次
发布时间:2019-06-20

本文共 1089 字,大约阅读时间需要 3 分钟。

//tbody中多选按钮事件$("#list-table tbody").on("click", "input[type='checkbox']", function() {
var allChecked = true; $(this).parents("tbody").find("input").each(function() {
if (!$(this).prop("checked")) {
allChecked = false; } }); $("#checkall").prop("checked", allChecked); if (allChecked) {
$("#checkall").parent("span").prop("class", "checked"); } else {
$("#checkall").parent("span").prop("class", ""); }});// thead中全选按钮事件---全选反选$('#checkall').click( function() {
if ($(this).prop('checked')) {
$(this).parents('thead').siblings('tbody').find('input').each( function() {
$(this).prop('checked', false); $(this).click(); }); } else {
$(this).parents('thead').siblings('tbody').find('input').each( function() {
$(this).prop('checked', true); $(this).click(); }); }});

转载于:https://www.cnblogs.com/xuejianbest/p/10284964.html

你可能感兴趣的文章
ASP.NET MVC 3 Razor Nested foreach with if statements
查看>>
【Mysql】命令行
查看>>
Asterisk 安装与配置
查看>>
利用日志记录所有LINQ的增,删,改解决方案
查看>>
实例讲解PostSharp(一)
查看>>
graylog 客户端的安装配置
查看>>
CentOS6.4_X86_64 安装Drupal-7.31必须成功版!
查看>>
驱动学习之驱动和应用的接口
查看>>
hbase region split源码分析
查看>>
MySQL备份之分库分表备份脚本
查看>>
Java 与 Netty 实现高性能高并发
查看>>
SurfControl人工智能新突破 领跑反垃圾邮件
查看>>
一个动态ACL的案例
查看>>
openstack 之 windows server 2008镜像制作
查看>>
VI快捷键攻略
查看>>
Win server 2012 R2 文件服务器--(三)配额限制
查看>>
卓越质量管理成就创新高地 中关村软件园再出发
查看>>
linux rsync 远程同步
查看>>
httpd的manual列目录漏洞
查看>>
myeclipse2014破解过程
查看>>