Ändern Sie die URL eines geöffneten Popup-Fensters
P粉348915572
P粉348915572 2024-03-25 17:35:47
0
2
557

Ist es möglich, die URL des Popup-Fensters zu ändern?

Angenommen, ich öffne ein Popup:

function pop1(){
    window.open('http://google.com','wind1');   
}

Können Sie die URL des Popup-Fensters „wind1“ in „http://msn.com“ ändern? Etwas mit location.href oder einer anderen Lösung.

P粉348915572
P粉348915572

Antworte allen(2)
P粉204136428

对我来说,当我只更改 url 的末尾(参数部分)时,我使用了一个小技巧: 在使用新的相似 url 之前加载不同的 url。 我选择使用“about:blank”,但可以使用任何网站网址。

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。

P粉135292805
var w1 = window.open('http://www.canop.org','wind1');

w1.location.href='http://www.google.com';
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!