iframe jQuery 参考范围
我的网站中有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
document.parent 为您指明正确的方向
document.parent points you to right direction