除了那些具有特定类的输入外,Jquery每个输入

时间:2017-09-22 16:25:35

标签: jquery

如何使用jquery .each循环遍历除具有特定类的输入控件之外的所有输入控件?

我有当前的循环遍历所有,我想要排除那些@ class =“static”

    $('input[type = "text"]').each(function () {
        var value = { QuestionId: $(this).attr('id'), Answer: $(this).val() };
        surveyResults.push(value)
    });

1 个答案:

答案 0 :(得分:0)

试试这个

$('input[type = "text"]:not(.your-specefic-class)').each(function () {
    var value = { QuestionId: $(this).attr('id'), Answer: $(this).val() };
    surveyResults.push(value)
});