如何在jQuery中选择具有多个类的元素?

时间:2016-10-08 20:15:11

标签: jquery jquery-selectors

 $(this).find("tr[class='well answers-list radio-list array2']").filter(function(){
                            st+="inside array";


                    });

此代码工作正常,并选择具有多个类的元素。但是,如果我选择'well answers-list radio-list'省略最后一个'array2'类,那么它会给出错误。我要求省略最后一个类,以便能够选择其他元素。 有办法吗?

谢谢

1 个答案:

答案 0 :(得分:0)

问题很模糊,并没有准确解释你想要做什么,但你可能想要这样的事情:

 $(this).find("tr.well.answers-list.radio-list").filter(function(){
      if($(this).hasClass('array2')){
           st+="inside array";
      }else{
            st+="not array";
      } 
 });