首页 > 编程 > JavaScript > 正文

JQuery点击行tr实现checkBox选中的简单实例

2019-11-20 09:54:33
字体:
来源:转载
供稿:网友
$(function () {   //除了表头(第一行)以外所有的行添加click事件.   $("tr").first().nextAll().click(function () {    //为点击的这一行切换样式bgRed里的代码:background-color:#FF0000;    $(this).children().toggleClass("bgRed");    //判断td标记的背景颜色和body的背景颜色是否相同;    if ($(this).children().css("background-color") != $(document.body).css("background-color")) {     //如果相同,CheckBox.checked=true;     $(this).children().first().children().attr("checked", true);     } else {     //如果不同,CheckBox.checked=false;     $(this).children().first().children().attr("checked", false);    }   });  });

以上这篇JQuery点击行tr实现checkBox选中的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表