1

在我的文档中,我有四个表格 - 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');}});
4

1 回答 1

1

试试这样

 $(".TAB1 .TAB2 TAB3").prop('checked', 
 false).closest('tr').find('input[type="text"]').prop('disabled', !this.checked);
于 2013-05-27T13:27:14.520 回答