Window.Open()
方法仍以最小化模式打开浏览器窗口,您仍然必须单击新打开的窗口右上角的最大化按钮以使其最大化。它将新打开的窗口最大化到几乎全屏,但不完全-可能是95%。我需要将其以100%的大小打开(窗口状态栏仍如下图所示)。
打开以下html文件后,您可以通过单击Try it
按钮来尝试。我已经在Chrome和Edge上进行了测试:
<html>
<body>
<p>Click the button to open a new browser window.</p>
<button onclick="myFunction()">Try it</button>
<script>
function myFunction() {
window.open('https://www.google.com', 'popup_name','height=' + screen.height + ',width=' + screen.width + ',resizable=yes,scrollbars=yes,toolbar=yes,menubar=yes,location=yes');
}
</script>
</body>
</html>
新打开的窗口的期望大小[占据整个屏幕,但仍显示在底部的桌面状态栏] :