如何检查页面上是否已经存在具有ID的对象?
可能的重复:
jQuery 是否有“exists”函数
比如说你有div:
<div id="hello"></div>
并且您正在动态创建 div:
<div id="hello"></div>
是否有一个可以在 Jquery 中使用的函数来检查具有您尝试创建的 ID 的对象是否已存在于页面上?
Possible Duplicate:
Is there an “exists” function for jQuery
Say for instance you have the div:
<div id="hello"></div>
And you are dynamically creating a div:
<div id="hello"></div>
Is there a function you can use in Jquery which will check to see if the object with the ID you are trying to create already exists on the page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于 jQuery 方法,你可以使用
For jQuery method you could go with
或者,jQuery 方式:
Or, the jQuery way: