-1

我在页面加载时写了一个 javascript

if(!window.fullScreen) window.open(document.URL,'','fullScreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');}

但是 window.fullScreen 总是假的,所以它会一直打开窗口。

还有其他方法可以检查窗口是否处于全屏模式?

谢谢

4

1 回答 1

0

你忘了开括号

    if(!window.fullScreen){//<- Forgot opening bracket
    window.open(document.URL,'','fullScreen=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
    }
于 2012-07-03T10:07:18.593 回答