首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在全屏模式下启动Google

在全屏模式下启动Google
EN

Stack Overflow用户
提问于 2015-07-06 09:30:18
回答 1查看 1.3K关注 0票数 0

我需要自动启动Chrome在全屏模式(F11),每次在asp.net网页

就像我们做F11键事件时一样。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2015-07-06 09:35:00

试试这个:

代码语言:javascript
复制
  <script type="text/javascript">
        function goFullscreen(id) {
            // Get the element that we want to take into fullscreen mode
            var element = document.getElementById(id);

            // These function will not exist in the browsers that don't support fullscreen mode yet, 
            // so we'll have to check to see if they're available before calling them.

            if (element.mozRequestFullScreen) {
                // This is how to go into fullscren mode in Firefox
                // Note the "moz" prefix, which is short for Mozilla.
                element.mozRequestFullScreen();
            } else if (element.webkitRequestFullScreen) {
                // This is how to go into fullscreen mode in Chrome and Safari
                // Both of those browsers are based on the Webkit project, hence the same prefix.
                element.webkitRequestFullScreen();
            }
            // Hooray, now we're in fullscreen mode!
        }
</script>

<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="goFullscreen('Button1'); return false"/>

按一下按钮就会出现这样的情况。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/31242249

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档