jquery判断对象是否存在

      MsMvp 2009-6-24 11:17

用jquery判断一个对象是否存在不能用

if($ ("#id")){

}else{}

jquery不管对象存不存在都会返回object。

应该用

if($ ("#id").length>0){}else{}

or     

 if($ ("#id")[0]){    } else {   }

or 

 if(document.getElementById("id")){} else {}

标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commentauthor}
{commentauthor}
{commenttime}
{commentnum}
{commentcontent}
作者:
{commentrecontent}