gpt4 book ai didi

javascript - Internet Explorer 11 不通过全屏 API 进入全屏

转载 作者:数据小太阳 更新时间:2023-10-29 04:46:05 25 4
gpt4 key购买 nike

我正在尝试使用全屏 api。 API 在所有其他浏览器上都能正常工作,但不幸的是 ie11 没有响应。我正在使用从这里复制的代码:

var element = $doc.documentElement;
var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen || element.mozRequestFullScreen || element.msRequestFullscreen;

if (requestMethod)
{ // Native full screen.
console.log(requestMethod);
requestMethod.call(element);
}
else if (requestMethod !== "undefined")
{ // Older IE.
console.log("window.ActiveXObject !== undefined");
var wscript = new ActiveXObject("Wscript.shell");
wscript.SendKeys("{F11}");
}

有什么建议吗?

最佳答案

确保您没有使用无效的 msRequestFullScreen,您需要使用大小写正确的版本 msRequestFullscreen。这是 Microsoft 特有的,因为我认为所有其他 vendor 都为单词屏幕大写制作了 s

关于javascript - Internet Explorer 11 不通过全屏 API 进入全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27647616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com