If one of two elements exists, do something

前端 未结 7 855
遇见更好的自我
遇见更好的自我 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:25

    !$.isEmptyObject($.find('#urId'))
    

    this will return "true" if the element exists and False if not

    cheers :)

提交回复
热议问题