如何使用jquery选择未选中的输入类型复选框
我有一个表,其中有具有相同 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我是这样解决的:
I solve in this way:
看看这个小提琴: http://jsfiddle.net/3KWSr/1/
Have a look at this fiddle: http://jsfiddle.net/3KWSr/1/