怎么用js控制页面宽度100%显示,无论屏幕大小,都100%显示

解决方案 »

  1.   

    不是可以设置宽度吗?你把它设成100%而不是100px 100em之类的试试
      

  2.   

    <script type="text/javascript">
    function init(){
    var a=document.getElementById("test");
    a.style.width="100%";
    a.style.height="100%";
    }
    window.onload=init;
    </script>
    </head><body>
    <div id="test" style="position:absolute; height:0px; top:0px; left:0px; width:0px; background-color:#00FF00"></div>
    </body>
    这样试试