简体   繁体   中英

How to stop window.open from refreshing the window in javascript?

Lets say you have code like this.

function openNewTab(url) {
      const newTab = window.open(url, 'windowNameHehe');
};

Now every time you call this function it will open a new tab. However, if the window is already opened it will go to it and refresh/reload it. How do I stop it from reloading/refreshing and just bringing it to view? Doing something like newTab.focus() or adding the boolean (true/false) in the 4th parameter of window.open isn't working for me either. Any help?

function openNewTab(url) {
  var newTab = window.open(url, 'windowNameHehe', , false);
  newTab.focus();
}

https://www.w3schools.com/jsref/met_win_open.asp

Open a URL in a new tab (and not a new window) using JavaScript

function openNewTab(url) {
  const newTab = window.open('', 'windowNameHehe');
  newTab.focus();
  if (!newTab.location.hostname) {
    newTab.location.href = url;
  }
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM