window.open(url,name,features,replace)   我现在是必须要弹出一个窗口 并且这个窗口要自己设计大小去工具栏等状态
  
window.open(url,_self,features,replace)  用_self这样可以不被屏蔽  但是这样的话features参数就没用了  请问谁能解决这个问题!!!

解决方案 »

  1.   

    <!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>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>xxxx</title>
    <SCRIPT language=JavaScript src="jquery-latest.pack.js"></SCRIPT>
    </head><body><input name="cmdsub" type="button"  vlaue="点击弹出窗口"/>                                 
    </body>                           
    </html>
    <SCRIPT>

    $('input#cmdsub').click( 
    function() 

    window.open("index.asp","","fullscreen=2,resizable=yes");
    window.opener=null;
    window.close();
    //return false; });
     }
    </SCRIPT>