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 之外打开以及是否打开了主页。
现在我想在打开主页时打开这个特定页面。如何发送“浏览器来自”test.html 的信息?然后将 iframe 的来源设置为test.html?
test.html
在 URL 的查询字符串中将要加框的页面的 URL 传递给包含该框架的页面。
语法
top.document.referrer
将让您访问 iFrame 的父级;
document.getElementById('myIframeId').src = myUrl + 'test.html';
将设置 iFrame 源。