我想知道如何在打开链接时将浏览器设置为自动最大化窗口屏幕?
示例代码下方:
<a href="http://www.w3schools.com" target="_blank">Visit W3Schools</a>
事情是它总是以小屏幕打开。我想要的是一个完整的Windows屏幕。我使用JSP页面作为前端。
答案 0 :(得分: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>