如何检查页面上是否存在具有ID的对象?
可能重复:
有没有jQuery的“存在”功能
比如说你有div:
<div id="hello"></div>
你正在动态创建一个div:
<div id="hello"></div>
有没有可以在Jquery中使用的函数,它将检查页面上是否存在具有要创建的ID的对象?
对于jQuery方法,你可以一起去
if($("#selector").length) {
//object already exists
}
if (document.getElementById('hello')) {
// yup, already there
}
或者,jQuery的方式:
if ($('#hello').length) {
// yup, already there
}
链接地址: http://www.djcxy.com/p/14675.html
上一篇: How to check if an object with an ID already exists on the page?