如何使用JavaScript使窗口全屏显示(在整个屏幕上展开)
如何以与IE,Firefox和Opera兼容的方式使访问者的浏览器使用JavaScript全屏显示?
回答:
这与您使用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>
以上是 如何使用JavaScript使窗口全屏显示(在整个屏幕上展开) 的全部内容, 来源链接: utcz.com/qa/399921.html