如何通过 JavaScript 使用 F11 键事件使浏览器全屏
我想让我的浏览器全屏显示。和我们做F11按键事件时一样。我发现了一些示例,例如
function maxwin() {
var wscript = new ActiveXObject("WScript.Shell");
if (wscript!=null) {
wscript.SendKeys("{F11}");
}
}
Which does not work on mozilla 或任何其他最新的浏览器。请告诉我是否有任何方法可以解决这个问题。
谢谢。 (提前。)
I want to make my browser full screen. Same as when we do F11 key event. I found some examples such as
function maxwin() {
var wscript = new ActiveXObject("WScript.Shell");
if (wscript!=null) {
wscript.SendKeys("{F11}");
}
}
Which does not work on mozilla or any other latest browsers. Please let me know if there is any way to sort out this problem.
Thanks. (In advance.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
现在,最新版本的 Chrome、Firefox 和 IE(11) 都可以实现这一点。
按照 Zuul 在此线程上的指示,我编辑了他的代码以包含 IE11 和选项全屏显示页面上选择的任何元素。
JS:
HTML:
其中“document.body”是您希望的任何元素。
另请注意,尝试从控制台运行这些全屏命令似乎不适用于 Chrome 或 IE。不过我在 Firefox 中使用 Firebug 确实取得了成功。
另一件需要注意的事情是这些“全屏”命令没有垂直滚动条,您需要在 CSS 中指定这一点:
“!important”似乎是 IE 渲染它所必需的
This is now possible in the latest versions of Chrome, Firefox and IE(11).
Following the pointers by Zuul on this thread, I edited his code to include IE11 and the option to full screen any element of choice on your page.
JS:
HTML:
Where "document.body" is any element you so wish.
Also note that trying to run these full screen commands from the console do not appear to work on Chrome or IE. I did have success with Firebug in Firefox though.
One other thing to note is that these "full screen" commands don't have a vertical scrollbar, you need to specify this within the CSS:
The "!important" seems to be necessary for IE to render it
请改用此代码
来源:如何在 Javascript 中制作全屏窗口(在整个屏幕上伸展)
在 Chrome、FF10 以上、IE 8 以上、Safari 5 上运行并经过测试。
use this code instead
Source: How to make in Javascript full screen windows (stretching all over the screen)
Works and tested on Chrome, FF10 above, IE 8 above, Safari 5..
如果没有本机代码或浏览器扩展,这是不可能的。 ActiveXObject仅存在于IE浏览器中。
Not possible without native code or a browser extension. The ActiveXObject only exists in the IE browser.
如今,
Firefox 10 也可以使用(至少 safari 5、chrome 16 上的 webkit 浏览器)。 检查此链接
不知道是什么ie 在这个主题中正在做
now a days it is possible (at least webkit browsers at safari 5, chrome 16) with the
Firefox 10 also works. check this link
no idea what i-e is doing in this topic