如何使用jquery选择未选中的输入类型复选框

发布于 2025-01-05 03:44:03 字数 259 浏览 1 评论 0原文

我有一个表,其中有具有相同 id 的行和具有其他相同 id 的其他行。 每一行都有一个复选框,我想更改具有一个 id 的所有行内所有未选中复选框的背景颜色。这就是我尝试做的:

function resetOtherCheckBox(){
   $('#sent').find('input:checkbox:not(:checked)').css('background-color', '#33CCCC');
}

错误是什么?请帮助我

I have some a table in which i have rows with same id and other rows with other same id.
Every row has a checkbox and i want to change the backgroundcolor of all the unchecked checkbox inside all rows with one id. this is what i try to do:

function resetOtherCheckBox(){
   $('#sent').find('input:checkbox:not(:checked)').css('background-color', '#33CCCC');
}

what is the error? help me pls

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不爱素颜 2025-01-12 03:44:03

我是这样解决的:

$("tr.sent input[type=checkbox]:not(:checked)").parents('tr').css('background-color', '#33CCCC');

I solve in this way:

$("tr.sent input[type=checkbox]:not(:checked)").parents('tr').css('background-color', '#33CCCC');
吻安 2025-01-12 03:44:03
$('#sent').find('input[type=checkbox]').not(':checked')
$('#sent').find('input[type=checkbox]').not(':checked')
狼性发作 2025-01-12 03:44:03

看看这个小提琴: http://jsfiddle.net/3KWSr/1/

Have a look at this fiddle: http://jsfiddle.net/3KWSr/1/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文