如何检查页面上是否已经存在具有ID的对象?

发布于 2024-11-08 19:27:07 字数 406 浏览 0 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

A君 2024-11-15 19:27:07

对于 jQuery 方法,你可以使用

if($("#selector").length) {
    //object already exists
}

For jQuery method you could go with

if($("#selector").length) {
    //object already exists
}
你是暖光i 2024-11-15 19:27:07
if (document.getElementById('hello')) {
    // yup, already there
}

或者,jQuery 方式:

if ($('#hello').length) {
    // yup, already there
}
if (document.getElementById('hello')) {
    // yup, already there
}

Or, the jQuery way:

if ($('#hello').length) {
    // yup, already there
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文