如何查看当前页面是否已加载到 ThickBox 中?

发布于 2024-11-08 21:00:08 字数 67 浏览 1 评论 0原文

我正在使用 ThickBox 作为灯箱,我需要检查当前页面是否存在于 TB 中。我怎样才能用 jQuery 做到这一点?

I'm using ThickBox for a lightbox and I need to check if the current page exists within a TB or not. How can I do this with jQuery?

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

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

发布评论

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

评论(1

笑脸一如从前 2024-11-15 21:00:08

想必您的装箱页面可以检查容器。在演示站点上,容器的 ID 为 TB_window。因此,在该示例中,您可以执行以下操作:

if( $('selector-for-stuff-that-might-be-boxed').closest('#TB_window').size() ){
  // you're probably in a box
}

注意:如果这样做的目的是将不同的样式应用于装箱内容,则可以通过将该 ID 添加到 CSS 选择器,仅使用常规 CSS 来实现此目的:

/* applies to non-boxed content */
.my-style { /*...*/ }


/* applies to boxed content */
#TB_window .my-style { /*...*/ }

Presumably your boxed page could check for a container. On the demo site, the container has the id TB_window. So in that example, you could do something like this:

if( $('selector-for-stuff-that-might-be-boxed').closest('#TB_window').size() ){
  // you're probably in a box
}

Note: if the point of this is to apply different styles to the boxed content, you can do that with just regular CSS by adding that ID to the CSS selector:

/* applies to non-boxed content */
.my-style { /*...*/ }


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