当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 怎么让网页全屏显示?

Javascript
JavaScript中的Navigator浏览器对象
JavaScript中的Screen屏幕对象
JavaScript中的Window窗口对象
JavaScript中的History历史对象
JavaScript中的Location地址对象
JavaScript中的Document文档对象
JavaScript中的事件处理
JavaScript中的对象化编程
JavaScript框架编程
JavaScript的Cookies
JavaScript表单常用验证集合
javascript 实现的多浏览器支持的贪吃蛇webgame
表现、结构、行为分离的选项卡效果
用JavaScript 判断用户使用的是 IE6 还是 IE7
msn上的tab功能Firefox对childNodes处理的一个BUG
jquery 插件 人性化的消息显示
零基础学JavaScript最新动画教程+iso光盘下载
用jQuery实现检测浏览器及版本的脚本代码
在Javascript类中使用setTimeout
Javascript 写的简单进度条控件

Javascript 中的 怎么让网页全屏显示?


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-28   浏览: 449 ::
收藏到网摘: n/a

最常见的是使用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> 

另外,如果想让已经打开的网页全屏,有以下两种方法:

1.使用ActiveX

<html>
<head>
<title>test</title>
<script language="JavaScript">
function Fkey(){
     
var WsShell = new ActiveXObject('WScript.Shell')
     WsShell.SendKeys(
'{F11}');
}
</script>
</head>
<body>
<href="javascript:Fkey()">to full</a>
</body>
</html>

2.使用window.open模拟当前页:

<SCRIPT language="JavaScript">   
function   toFull(){   
  
if(window.name=="fullscreen")return;   
  
var a =window.open("","fullscreen","fullscreen=yes")   
  a.location 
= window.location.href   
  window.opener
=null   
  window.close()   
}   
</SCRIPT>   
<html>   
<body>   
<input type=button value="full" onclick=toFull()>   
</body>   
</html>