-2

我的 div 中有很多文本框。我只想知道没有x类的文本框不是空的。我怎样才能做到这一点。

我试过了:

$("div.editorRow input").each(function () {
   //I want to check here if Textbox class is not x.
   if (!$(this).val()) {
   }
}

请帮我。我不知道该怎么做。

4

3 回答 3

6

尝试以下操作:

if(!$(this).hasClass('x')){
}
于 2013-06-06T14:23:09.003 回答
3
$("div.editorRow input").each(function () {
   if (! (this.value && $(this).is('.x') ) {
       // do stuff
   }else{
       // do other stuff
   }
}
于 2013-06-06T14:23:02.753 回答
3

你可以做:

$("div.editorRow input:not(.x)").each(function () {
    if (this.value == '') {
        console.log("im empty!);
    }
});
于 2013-06-06T14:24:11.637 回答