iframe jQuery 参考范围

发布于 2024-11-23 16:55:19 字数 281 浏览 3 评论 0原文

我的网站中有一个 iframe,该 iframe 使用 jQuery 加载一个页面。看来 jQuery 使用 iframe 尺寸作为参考,而不是我的实际文档。 例如,我使用了一个 iframe 来引用:

$.jGrowl(title + " has been used");

(jGrowl 是一个基本上在页面右上角加载通知的插件)

当通知显示时,它显示在 iframe 的右上角,而不是实际的文档。有没有办法让 jQuery 引用实际站点而不是 iframe?

I have an iframe in my site and this iframe loads a page with jQuery. It seems that the jQuery is using the iframe dimensions as a reference instead of my actual document.
For example, I used an iframe refering to this:

$.jGrowl(title + " has been used");

(jGrowl is a plugin that basically loads a notice on the upper right of the page)

When the notice shows, it is showing on the upper right of the iframe and not the actual document. Is there anyway to get the jQuery to refer to the actual site and not the iframe?

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

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

发布评论

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

评论(1

眼眸 2024-11-30 16:55:19

document.parent 为您指明正确的方向

$(document.parent).jGlow(title + " has been used");

document.parent points you to right direction

$(document.parent).jGlow(title + " has been used");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文