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

有帮助吗?

解决方案

I solve in this way:

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

其他提示

$('#sent').find('input[type=checkbox]').not(':checked')

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

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top