使用 jQuery 检查元素是否在 DOM 中?

发布于 2024-11-30 04:17:32 字数 115 浏览 1 评论 0原文

我有一个快速而简单的问题。如何检查某个元素是否在 DOM 中?

例如我如何检查是否有

这只是矩阵

I have quick and simple question. How can I check that an element is in the DOM or not?

For example how can I check if there is
<p id="does_i_really_exist_or">this is just matrix</p>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

旧瑾黎汐 2024-12-07 04:17:32
if ( $("#does_i_really_exist_or").length ) {
   //-- It does exist.
}
if ( $("#does_i_really_exist_or").length ) {
   //-- It does exist.
}
青朷 2024-12-07 04:17:32
if ($("#does_i_really_exist_or").length > 0) {

   // do something
}
if ($("#does_i_really_exist_or").length > 0) {

   // do something
}
贪恋 2024-12-07 04:17:32

这里有三种不同的方式:

if ($("#does_i_really_exist_or").length > 0) {

   // do something
}

if ($("#does_i_really_exist_or").size() > 0) {

   // do something
}

if ($("#does_i_really_exist_or")[0]) {

   // do something
}

here are three different ways:

if ($("#does_i_really_exist_or").length > 0) {

   // do something
}

if ($("#does_i_really_exist_or").size() > 0) {

   // do something
}

if ($("#does_i_really_exist_or")[0]) {

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