我的 div 中有很多文本框。我只想知道没有x
类的文本框不是空的。我怎样才能做到这一点。
我试过了:
$("div.editorRow input").each(function () {
//I want to check here if Textbox class is not x.
if (!$(this).val()) {
}
}
请帮我。我不知道该怎么做。
尝试以下操作:
if(!$(this).hasClass('x')){
}
$("div.editorRow input").each(function () {
if (! (this.value && $(this).is('.x') ) {
// do stuff
}else{
// do other stuff
}
}
你可以做:
$("div.editorRow input:not(.x)").each(function () {
if (this.value == '') {
console.log("im empty!);
}
});