If one of two elements exists, do something

前端 未结 7 860
遇见更好的自我
遇见更好的自我 2021-02-02 05:21

I currently do this to check if one of two elements exists:

if ($(\".element1\").length > 0 || $(\".element2\").length > 0) {
  //do stuff...
}
         


        
7条回答
  •  夕颜
    夕颜 (楼主)
    2021-02-02 06:23

    Just use .each().

    $(".element1").each(function(){
      //Do Something here
    }
    

    Simple...

提交回复
热议问题