}
else { // do something else
}使用Jquery时,"/>

jquery判断节点是否存在的方法

判断页面中是否存在某个元素?jquery判断节点是否存在的方法

比如判断当前页面源代码中是否存在一个id="example"的元素,通常如果按照Js的写法,则如下:

if(document.getElementById('example')) { 
    // do something 
} 
else { 
    // do something else 
}

使用Jquery时,则应按照如下写法:

if($('#example').length) { 
    // do something 
} 
else { 
    // do something else 
}

注意不能直接写作 if($('#example')) ,因为这个将会永远返回 true。

更多jquery的相关知识,可访问:web前端自学!!

以上就是jquery判断节点是否存在的方法的详细内容,更多请关注易知道|edz.cc其它相关文章!

推荐阅读