admin管理员组

文章数量:1392073

I keep getting the following error

Error: Error: Syntax error, unrecognized expression: table $MainContent$gridPlans$ctl02$chkSelected Source File: .min.js Line: 2

I have worked what part of the script is causing this issue but unsure how to fix it:

// Check Box selector
    $("input:checkbox:not(:checked)").each(function () {
        var column = "table ." + $(this).attr("name"); // this line is not working
        $(column).hide();
    });

    $("input:checkbox").click(function () {
        var column = "table ." + $(this).attr("name");
        $(column).toggle();
    });

// Manage column checkboxes that should be unchecked
function manChecks() {
    var __CS = document.getElementById('__CS');
    var cols = __CS.value; // this line also causing issues

    colManage(1, cols.indexOf('|1') != -1);
    colManage(2, cols.indexOf('|2') != -1);
    colManage(3, cols.indexOf('|3') != -1);
    colManage(5, cols.indexOf('|5') != -1);
    colManage(6, cols.indexOf('|6') != -1);
    colManage(7, cols.indexOf('|7') != -1);
    colManage(8, cols.indexOf('|8') != -1);
    colManage(9, cols.indexOf('|9') != -1);
}

function colManage(id, show) {
    document.getElementById(id).checked = show;
    var column = "table ." + id;
    if (show) {
        $(column).show();
        $('label[for=' + id + ']').addClass('checked')
    }
    else {
        $(column).hide();
        $('label[for=' + id + ']').removeClass('checked')
    }
}

I keep getting the following error

Error: Error: Syntax error, unrecognized expression: table $MainContent$gridPlans$ctl02$chkSelected Source File: http://code.jquery./jquery-latest.min.js Line: 2

I have worked what part of the script is causing this issue but unsure how to fix it:

// Check Box selector
    $("input:checkbox:not(:checked)").each(function () {
        var column = "table ." + $(this).attr("name"); // this line is not working
        $(column).hide();
    });

    $("input:checkbox").click(function () {
        var column = "table ." + $(this).attr("name");
        $(column).toggle();
    });

// Manage column checkboxes that should be unchecked
function manChecks() {
    var __CS = document.getElementById('__CS');
    var cols = __CS.value; // this line also causing issues

    colManage(1, cols.indexOf('|1') != -1);
    colManage(2, cols.indexOf('|2') != -1);
    colManage(3, cols.indexOf('|3') != -1);
    colManage(5, cols.indexOf('|5') != -1);
    colManage(6, cols.indexOf('|6') != -1);
    colManage(7, cols.indexOf('|7') != -1);
    colManage(8, cols.indexOf('|8') != -1);
    colManage(9, cols.indexOf('|9') != -1);
}

function colManage(id, show) {
    document.getElementById(id).checked = show;
    var column = "table ." + id;
    if (show) {
        $(column).show();
        $('label[for=' + id + ']').addClass('checked')
    }
    else {
        $(column).hide();
        $('label[for=' + id + ']').removeClass('checked')
    }
}
Share Improve this question asked Aug 13, 2012 at 13:45 user1177860user1177860 5094 gold badges13 silver badges24 bronze badges 0
Add a ment  | 

1 Answer 1

Reset to default 5

Your class selector has $ characters in it - these need to be escaped.

Need to escape a special character in a jQuery selector string

jQuery selector value escaping

http://samuelsjoberg./archive/2009/09/escape-jquery-selectors

本文标签: javascriptError Error Syntax errorunrecognized expressionStack Overflow