Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站中有一个 iframe,这个 iframe 使用 jQuery 加载页面。似乎 jQuery 使用 iframe 尺寸作为参考,而不是我的实际文档。例如,我使用了一个 iframe 来引用它:
$.jGrowl(title + " has been used");
(jGrowl 是一个插件,基本上会在页面右上角加载一个通知)
当通知显示时,它显示在 iframe 的右上角,而不是实际文档。无论如何让jQuery引用实际站点而不是iframe?
document.parent 指向正确的方向
$(document.parent).jGlow(title + " has been used");