我在MVC代码中应用了一个jquery函数,用于在单击按钮时以全屏模式显示当前窗口。这是它的jquery:
function FullScreen() {
if ((document.fullScreenElement && document.fullScreenElement !== null) || // alternative standard method
(!document.mozFullScreen && !document.webkitIsFullScreen)) { // current working methods
IE 11在这篇文章中才发布了一天。我无法让元素全屏显示(div或document)
msRequestFullscreen将出现错误'object not support this...)
但是,上面的msdn示例将在传递目标makeFullScreen(evt.target)时起作用。我可以让div像下面的jquery代码那样全屏显示吗?
var xxx = $('#container');
xxx.msRequestFullscreen();
或者更好:单击一个按钮,然后让div或整个文档全屏显示?现在的情况是,当你点击一个按钮时,这个按钮就会全屏显示。