jQuery无法识别的表达式:input:checked [type = radio]

时间:2017-10-18 13:39:46

标签: jquery

您好我在编码方面很陌生,而且我遇到了错误。 我从这段代码中得到以下错误:

Syntax error, unrecognized expression: input:checked[type=radio][name=ASMTQUESTION:]

这是代码:

var input = $$('#ASMTQUESTION\\:' + childId);
    if (input.length > 1 || input.length == 0) {
        input = $$('input:checked[type=radio][name=ASMTQUESTION:' + childId + ']');}

请让我知道错误是什么。

1 个答案:

答案 0 :(得分:-1)

属性选择器的值应在引号之间,例如:

input:checked[type="radio"]