windows.open - 奇怪的行为

时间:2014-07-24 18:15:46

标签: javascript html window dhtml

我使用window.open()打开所需大小和位置的新窗口。加载窗口内的内容后,窗口只会跳转到另一个位置并更改其大小。

我使用此功能使用window.open()的标准api:

function popupwindow(url, title, w, h) {
  var left = (screen.width/2)-(w/2);
  var top = (screen.height/2)-(h/2);
  return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

为什么窗户失去位置/大小的任何想法?

0 个答案:

没有答案