控制浏览器高度 宽度 只能支持ie

Posted 众里寻Ta千百度 ^_^

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了控制浏览器高度 宽度 只能支持ie相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>请调整浏览器窗口</title>
    <meta http-equiv="content-type" content="text/html; charset=gb2312" />
</head>
<body>
    <h2 align="center">请调整浏览器窗口大小</h2><hr />
    <form action="#" method="get" name="form1" id="form1">
        <!--显示浏览器窗口的实际尺寸-->
        浏览器窗口 的 实际高度: <input type="text" name="availHeight" size="4" /><br />
        浏览器窗口 的 实际宽度: <input type="text" name="availWidth" size="4" /><br />
    </form>
    <script type="text/javascript">
        document.body.clientWidth = 100;
        if (window != top) top.location.href = location.href;
        self.resizeTo(800, 600);

        function openWin() {
            var i = 0;
            i = open("", "", "width=500,height=500");
        }
        var new_width = 800; //你要固定的浏览器宽度
        var new_height = 600; //你要固定的浏览器高度
        function resizewindow() {
            window.resizeTo(new_width, new_height);
        }
        resizewindow();
        //-->
    </script>
</body>
</html>

以上是关于控制浏览器高度 宽度 只能支持ie的主要内容,如果未能解决你的问题,请参考以下文章

请问用CSS如何控制自动隐藏多余的内容?

firefox 浏览器高度可以设为100%让其自适应宽度吗?

vh搭配vw进行响应式布局

如何让网页自适应所有屏幕宽度

浏览器宽度和高度的说明

js 获取浏览器高度和宽度值