我的网站中有一个iframe,这个iframe使用jQuery加载一个页面。似乎jQuery使用iframe维度作为参考而不是我的实际文档。 例如,我使用iframe参考:
$.jGrowl(title + " has been used");
(jGrowl是一个基本上在页面右上方加载通知的插件)
当通知显示时,它显示在iframe的右上角而不是实际文档中。反正有没有让jQuery引用实际网站而不是iframe?
答案 0 :(得分:1)
document.parent指向正确的方向
$(document.parent).jGlow(title + " has been used");