如何检查文本框是否具有“x”类

时间:2013-06-06 14:21:52

标签: jquery html

我的div中有很多文本框。我只想知道没有x类的文本框不为空。 我怎么能这样做。

我试过了:

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

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

3 个答案:

答案 0 :(得分:5)

尝试以下方法:

if(!$(this).hasClass('x')){
}

答案 1 :(得分:3)

$("div.editorRow input").each(function () {
   if (! (this.value && $(this).is('.x') ) {
       // do stuff
   }else{
       // do other stuff
   }
}

答案 2 :(得分:3)

你可以这样做:

$("div.editorRow input:not(.x)").each(function () {
    if (this.value == '') {
        console.log("im empty!);
    }
});