小编典典

如何使用JavaScript使窗口全屏显示(在整个屏幕上展开)

javascript

如何以与IE,Firefox和Opera兼容的方式使访问者的浏览器使用JavaScript全屏显示?


阅读 424

收藏
2020-04-25

共1个答案

小编典典

这与您使用JavaScript进入全屏显示的时间非常接近:

<script type="text/javascript">
    window.onload = maxWindow;

    function maxWindow() {
        window.moveTo(0, 0);

        if (document.all) {
            top.window.resizeTo(screen.availWidth, screen.availHeight);
        }

        else if (document.layers || document.getElementById) {
            if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
                top.window.outerHeight = screen.availHeight;
                top.window.outerWidth = screen.availWidth;
            }
        }
    }
</script>
2020-04-25