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 中有一个按钮,按下时需要刷新或重新加载 iframe。
我尝试了一些由于跨域尝试而被阻止的方法..
在 iframe 中的脚本中,试试这个:
document.location.href = document.location.href;
您无法从 iframe 中访问文档模型之外的元素,包括访问 iframe 本身。但是,您可以在其中访问文档的属性。