是否可以更改弹出窗口的网址。
假设我打开一个弹出窗口:
function pop1(){
window.open('http://google.com','wind1');
}
弹出窗口“wind1”的 url 是否可以更改为“http://msn.com”。与 location.href 或任何其他解决方案有关的东西。
是否可以更改弹出窗口的网址。
假设我打开一个弹出窗口:
function pop1(){
window.open('http://google.com','wind1');
}
弹出窗口“wind1”的 url 是否可以更改为“http://msn.com”。与 location.href 或任何其他解决方案有关的东西。
var w1 = window.open('http://www.canop.org','wind1');
w1.location.href='http://www.google.com';
在新的弹出窗口中使用这个:
$(document).ready(function(){ window.parent.location="http://www.google.com" })
对我来说,因为我只是更改了 url 的末尾(参数部分),所以我使用了一个小技巧:在使用新的类似 url 之前加载不同的 url。我选择使用“about:blank”,但可以使用任何网站 url。
self.location = "about:blank";
self.location = desired_url;
//this code works fine both in Mozilla Firefox as in Chrome
请注意,只有 location = site; 与 location.href = site.
我只使用 location.href 来读取当前的 url。