我测试了下面的 JavaScript 代码来检测 HTML5 视频是否全屏。该代码在 Chrome、Firefox 和 Opera 中运行良好,但在 IE 中却不行。如何在 Internet Explorer 中使用它?我尝试了“document.msFullscreenElement”,但没有奏效。
if( document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenElement || document.msFullscreenElement || document.oFullscreenElement)
mode = "FULLSCREENVIDEO";
else
mode = "REGULAR";