弹出打开铬的位置

时间:2011-07-19 21:16:23

标签: javascript html google-chrome popup window.open

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

谢谢!

6 个答案:

答案 0 :(得分:18)

在辅助监视器上打开弹出窗口时,这是Chrome中的一个错误。 Chrome用户似乎表示这是一个安全问题(虽然这是一个安全问题超出我的范围)。

现在,在NON-EXISTENT辅助监视器上打开一个弹出窗口,我能理解是一个安全问题,但是......无论如何。

以下是关于此事的讨论的链接:

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

答案 1 :(得分:10)

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

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"为您提供其他屏幕宽度,以便您可以将正常的中心计算添加到其中。

答案 2 :(得分:9)

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);

Chrome ...

答案 3 :(得分:2)

我认为Chrome中的这个错误是诚实的,但我现在还不知道修复,因为我自己是JavaScript的新手。对不起,我确定这不是您要找的答案。

答案 4 :(得分:1)

看看这个StackOverflow的帖子Center a popup window on screen?

几年前,我对该功能做了一些升级。

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);

答案 5 :(得分:0)

我知道这篇文章很老但我遇到了类似的问题:

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中。另外,请注意,这不在显示区域之外......