jquery判断对象是否存在,由于jquery获取对象是否存在时,都会返回一个jquery对象,所以原生的javaScript判断方法在jquery中是不可用的
javaScript写法
if(document.getElementById("id"))
{
alert('对象存在');
}
else
{
alert('对象不存在');
}
jquery写法
if($("#object_id").length>0)
{
alert('对象存在');
}
else
{
alert('对象不存在');
}
网址:
http://www.jb51.net/article/66544.htm
javaScript写法
if(document.getElementById("id"))
{
alert('对象存在');
}
else
{
alert('对象不存在');
}
jquery写法
if($("#object_id").length>0)
{
alert('对象存在');
}
else
{
alert('对象不存在');
}
网址:
http://www.jb51.net/article/66544.htm