3

我有一个网页,其中包含来自不同域的 iFrame。现在我在 iFrame 中有一个按钮,按下时需要刷新或重新加载 iframe。

我尝试了一些由于跨域尝试而被阻止的方法..

4

1 回答 1

11

在 iframe 中的脚本中,试试这个:

document.location.href = document.location.href;

您无法从 iframe 中访问文档模型之外的元素,包括访问 iframe 本身。但是,您可以在其中访问文档的属性。

于 2013-06-25T12:13:56.483 回答