4

我需要在 Chrome 浏览器中打开一个全尺寸的子窗口,以下代码在 Firefox 16.0.2 和 IE 9 中运行良好,但在 Google Chrome 22 中运行良好。我错过了什么?

window.open(href,"_blank","scrollbars=1,fullscreen=yes,status=no,toolbar=no,menubar=no,location=no");
4

1 回答 1

3

fullscreen选项仅受 IE 支持;你很“幸运”,FF现在似乎接受了,但谷歌浏览器不支持这个功能......

您只能在弹出窗口上强制宽度和高度

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

于 2012-11-02T09:37:38.847 回答