在我的文档中,我有四个表 - TAB1到TAB4。我有以下代码,我期待将它应用于所有表格。
$("#TAB1-check").click(function () {
if ($(this).val() == "Un-check All") {
$(".TAB1").prop('checked', false).closest('tr').find('input[type="text"]').prop('disabled', !this.checked);
$(this).val("Check All");}
else {
$(".TAB1").prop('checked', true).closest('tr').find('input[type="text"]').prop('disabled', !this.checked);
$(this).val("Un-check All");}});
这段代码:
$('#TAB1 td').each(function() {
if ($(this).text() == ' search_value ') {
$(this).closest('tr').css('background-color','#FFFF00');}});
答案 0 :(得分:1)
试试这个
$(".TAB1 .TAB2 TAB3").prop('checked',
false).closest('tr').find('input[type="text"]').prop('disabled', !this.checked);