如果我有一个脚本调用window.open
,将新页面加载到同一个窗口中,那么新页面的 JavaScript 需要识别上一页的 URL - 找到它的最佳方法是什么?
问问题
873 次
3 回答
3
您可以使用 window.opener.location.href ,它将为您提供打开新窗口的父页面的 URL。
于 2012-11-19T11:47:14.413 回答
0
使用Window.opener
你可以得到它,比如
var win=window.open('http://heera.it');
console.log(win.opener.location.href); // will output the url
例子。 </p>
于 2012-11-19T11:41:41.433 回答
0
您可以使用window.opener
来获取对打开当前窗口的窗口的引用。不确定这是否是您所追求的。使用window.open
时会出现一个新窗口,不知道“在同一屏幕中打开新窗口”是什么意思。
于 2012-11-19T11:39:51.040 回答