suchen

Heim  >  Fragen und Antworten  >  Hauptteil

Ändern Sie die URL eines geöffneten Popup-Fensters

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粉348915572P粉348915572287 Tage vor617

Antworte allen(2)Ich werde antworten

  • P粉204136428

    P粉2041364282024-03-26 15:00:45

    对我来说,当我只更改 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。

    Antwort
    0
  • P粉135292805

    P粉1352928052024-03-26 10:26:29

    var w1 = window.open('http://www.canop.org','wind1');
    
    w1.location.href='http://www.google.com';

    Antwort
    0
  • StornierenAntwort