的窗口.在Chrome的第二个显示器上打开'

`window.open` on the second monitor in Chrome

本文关键字:显示器 窗口 Chrome 第二个      更新时间:2023-09-26

当我使用firefox然后使用window.open('blah.com','blah','left=-30,top=-300');时,弹出窗口在我的第一个显示上方的第二个显示中打开,但在chrome中,弹出窗口只是在left=0,top=0打开。是否有一个原因,为什么铬是这样做,我将如何解决这个问题?

谢谢!

这是Chrome浏览器在二级显示器上打开弹出窗口时的一个错误。Chrome的人似乎说这是一个安全问题(尽管这是一个安全问题超出了我的范围)。

现在,在不存在的辅助监视器上打开弹出窗口,我可以理解这是一个安全问题,但是……无论什么。

这里有一个关于此事的讨论链接:

https://code.google.com/p/chromium/issues/detail?id=137681

我知道这是一个旧的帖子,但这是我的解决方案。只需使用屏幕对象的"avail*"属性:

var windowSize = {
    width: 500,
    height: 500,
};
var windowLocation = {
    left:  (window.screen.availLeft + (window.screen.availWidth / 2)) - (windowSize.width / 2),
    top: (window.screen.availTop + (window.screen.availHeight / 2)) - (windowSize.height / 2)
};
window.open(http://example.com, '_blank', 'width=' + windowSize.width + ', height=' + windowSize.height + ', left=' + windowLocation.left + ', top=' + windowLocation.top);

基本上,就是"window.screen"。

" availLeft"给你其他屏幕的宽度,所以你可以添加你的正常中心计算。
var w = 300;
var h = 300;
var left = (window.screen.width/2)-(w/2);
var top = (window.screen.height/2)-(h/2);
var win = window.open("example.html", "_blank", 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h);
win.moveTo(left, top);

看看这个StackOverflow的post Center在屏幕上弹出窗口?

几年前我对这个功能做了一点升级。

function multipleScreenPopup(url, title, w, h, centered = true, moveRight = 0, moveDown = 0, resizable = "no") {
  // Fixes dual-screen position                         Most browsers      Firefox
  var dualScreenLeft = window.screenLeft != undefined ? window.screenLeft : screen.left;
  var dualScreenTop = window.screenTop != undefined ? window.screenTop : screen.top;
  var width = window.innerWidth ? window.innerWidth : document.documentElement.clientWidth ? document.documentElement.clientWidth : screen.width;
  var height = window.innerHeight ? window.innerHeight : document.documentElement.clientHeight ? document.documentElement.clientHeight : screen.height;
  var left = 0;
  var top = 0;
  if (centered === true) {
    left = ((width / 2) - (w / 2)) + dualScreenLeft;
    top = ((height / 2) - (h / 2)) + dualScreenTop;
  } else {
    left = dualScreenLeft + moveRight;
    top = dualScreenTop + moveDown;
  }
  var newWindow = window.open(url, title, 'directories=no,titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=' + resizable + ', width=' + w + ', height=' + h + ', top=' + top + ', left=' + left);
  // Puts focus on the newWindow
  if (window.focus) {
    newWindow.focus();
    }
}
// centered as of the monitor that fired on it
multipleScreenPopup('https://google.com', '_blank', 500, 500);
// move from the left and from the top
multipleScreenPopup('https://yahoo.com', '_blank', 500, 500, false, 200, 200);

我知道这篇文章很旧,但我也有过类似的问题:

var w = 300;
var h = 300;
var left = (window.screen.width/2)-(w/2);
var top = (window.screen.height/2)-(h/2);
var win = window.open("example.html", "_blank", 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);


—在Firefox中居中,但在Chrome中不居中。另外,请注意,这并不在显示区域之外…

这个方法是可行的,尽管这个方法是实验性的,将来可能不会起作用

 var screenDetails = await window.getScreenDetails()
 if (screen.isExtended && screenDetails.screens.length > 1) {
  var newWindow = window.open(
     "https://ya.ru",
     "New Window",
    `popup,width=${myWidth},height=${myHeight},left=0,top=0`
  );
  newWindow.moveTo(screenDetails.screens[1].left + myMargin, 0);
 }