用将窗口大小设置为screen.Width,screen.Height

解决方案 »

  1.   

    <script>
    window.open('map.asp','MapInfo','status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbar=no,menubar=no,status=no,directories=no,fullscreen=yes,left=0,top=0,width=800,height=550');
    </script>
      

  2.   

    插入底图的时候把width的值置为screen.Width,height的值置为screen.Height应该就可以了
      

  3.   

    <table width=100% height=100%>
      <tr><td width=100% height=100%>
        <img src="images/bigImage1.JPG" width=100% height=100%>
      </td></tr>
    </table>
      

  4.   

    在你的那个弹出页面里面插入下面这几句
    <script>
    if(window.screen.availWidth>1000){
    k1=window.screen.availWidth
    g1=window.screen.availHeight
    }else{
    k1=window.screen.availWidth
    g1=window.screen.availHeight
    }
    window.moveTo(0,0);
    window.resizeTo(k1,g1);
    self.focus();</script>