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 父窗口一次?
window.top.location = "http://www.site.com";
带来无尽的清爽。
用一个简单的 if?
if
if ( window.top.location <> "http://www.site.com") { window.top.location = "http://www.site.com"; }