如何使用jquery .each循环遍历除具有特定类的输入控件之外的所有输入控件?
我有当前的循环遍历所有,我想要排除那些@ class =“static”
$('input[type = "text"]').each(function () {
var value = { QuestionId: $(this).attr('id'), Answer: $(this).val() };
surveyResults.push(value)
});
答案 0 :(得分:0)
试试这个
$('input[type = "text"]:not(.your-specefic-class)').each(function () {
var value = { QuestionId: $(this).attr('id'), Answer: $(this).val() };
surveyResults.push(value)
});