js控制页面的全屏展示和退出全屏显示的方法

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

js控制页面的全屏展示和退出全屏显示的方法

JESTER_WILL   2020-05-13 我要评论

本文实例讲述了js控制页面的全屏展示和退出全屏显示的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:
<!DOCTYPE html>   
<html>   
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />   
<body>   
<div style="margin:0 auto;height:600px;width:700px;"> 
<button id="btn">js控制页面的全屏展示和退出全屏显示</button>   
<div id="content" style="margin:0 auto;height:500px;width:700px; background:#ccc;" > 
<h1>js控制页面的全屏展示和退出全屏显示</h1>   
</div> 
</div>   
</body>   
<script language="JavaScript">     
document.getElementById("btn").onclick=function(){    
    var elem = document.getElementById("content");     
    requestFullScreen(elem);    
};    
function requestFullScreen(element) {   
    var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullScreen;   
    if (requestMethod) {     
        requestMethod.call(element);   
    } else if (typeof window.ActiveXObject !== "undefined") {     
        var wscript = new ActiveXObject("WScript.Shell");   
        if (wscript !== null) {   
            wscript.SendKeys("{F11}");   
        }   
    }   
}   
</script>   
</html>

希望本文所述对大家的javascript程序设计有所帮助。

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们