jquery judge element exist

rgqancy發表於2016-12-01

http://learn.jquery.com/using-jquery-core/faq/how-do-i-test-whether-an-element-exists/

if ( $( "#myDiv" ).length ) {
    $( "#myDiv" ).show();
}

http://www.jb51.net/article/49779.htm

通常我們的做法是 

複製程式碼程式碼如下:
if($('.mydiv').length>0)

 

比較可靠且不會出錯的做法是:

複製程式碼程式碼如下:

if($('.mydiv').length && $('.mydiv').length>0)
  return true;

 

相關文章