1

我想知道如何将浏览器设置为在打开链接时自动最大化窗口屏幕?

下面的示例代码:

<a href="http://www.w3schools.com"  target="_blank">Visit W3Schools</a>

事情是它总是作为一个小屏幕打开。我想要的是始终全屏。我使用 JSP 页面作为前端。

4

1 回答 1

1

尝试这个

<html>
<head>
<title></title>
<script type="text/javascript">
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=yes,location=yes,resizable=yes');
}
</script>
</head>

<body>
<a href="javascript:void(0);" onclick="fullScreen('http://www.w3schools.com');">Visit W3Schools</a>
</body>
</html> 
于 2012-08-25T15:26:33.507 回答