<script language="JAVAScript">
function openWin(){
    w = screen.width;
    h = screen.height;
    window.open("ll.html",'x','fullscreen=0, ,scrollbars=auto,resizable=0,width='+w+',heigth='+h);
}
</script>

解决方案 »

  1.   


    <script language="JAVAScript">
    function openWin(){
        w = screen.width;
        h = screen.height;
        window.open("ll.html",'x','fullscreen=0, ,scrollbars=auto,resizable=0,top=0,left=0,width='+w+',heigth='+h);
    }
    </script>
      

  2.   

    修改一下上面的代码
    window.open("ll.html","_blank","height="+h+",width="+w+",toolbar=no,location=no,helpIcon=no,minimize=no,maxnimize=no,systemMenu=no,directories=no,resizeable=no,top=0,left=0,status=no,menubar=no,");