首页 > 开发 > 综合 > 正文

怎么让网页全屏显示?

2024-07-21 02:04:35
字体:
来源:转载
供稿:网友

最常见的是使用window.open的方法,直接打开全屏网页:

<script>
<!--
function fullwin(){
window.open(
"bigpage.html","bfs","fullscreen,scrollbars")
}
//-->
</script>

<center>
<form>
<input type="button" onclick="fullwin()" value="open full screen window">
</form>
</center> 
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表