本帖最后由 eyugod01 于 2011-02-09 17:50:46 编辑

解决方案 »

  1.   


    hta + js就可以了参考下 EXT吧
      

  2.   

    如果是一个纯粹的小页面或几个页面的系统那倒还可以,但是在大型开发中这样是不行的。我现在只是要求能跳转,而且容易操作。
    如果用extjs的话,我也试过,使用extjs出来的窗口虽然比较漂亮,但想要与兼容起来,好像还是有困难。
      

  3.   

    那简单说,其实我要的效果就是window.open()方法出来的效果,但是不要工具栏,地址栏,放大按钮灰色。
      

  4.   

    <script type="text/javascript" >     
    var winHeight;   
        var winWidth;   
        var win = null;   
        winWidth=window.self.screen.width;   
        winHeight=window.self.screen.height;    
        function   toFull(){      
        if(window.name=="fullscreen")return;      
    var   a   =window.open("","fullscreen","top=0,left=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+winWidth+",height="+(winHeight-50))      
    a.location   =   window.location.href      
    window.opener=null      
    window.close()      
        }      
    toFull();      
        </script> 
      

  5.   

    左看右看上看下看,我终于看出LZ只是想要一个模态窗口罢了。。IE可以用showModalDialog
      

  6.   

    window.open(url, "windowname", "width:800,height:600,location=no,toolbar=no,menubar=no,status=no");