b/s结构的软件开发,每个页面的IE怎么屏蔽,用js,求代码?

解决方案 »

  1.   

    就是啊,ie屏蔽了怎么访问B/S的页面?
      

  2.   

    登陆界面用普通IE
    然后登陆之后就用window.open("")打开页面就可以了
      

  3.   

    这个我知道,登陆后用windows.open(“list.aspx”,location=“no ”)
    以后的每个页面都可以了
      

  4.   

    是的,给你个例子吧
    window.open('url', '_blank','scrollbars=no,ScreenX=50,ScreenY=20,width=450,height=280,left=50,top=20');
      

  5.   

    <HTML>
    <HEAD>
    <TITLE>First Document</TITLE>
    <script>
    function replace(){
    var oNewDoc = document.open("text/html", "replace");
    var sMarkup = "<HTML><HEAD><TITLE>New Document</TITLE><BODY>Hello, world</BODY></HTML>";
    oNewDoc.write(sMarkup);
    oNewDoc.close();
    }
    </script>
    </HEAD>
    <BODY>
    <h1>I just want to say</h1><br>
    <!--Button will call the replace function and replace the current page with a new one-->
    <Input type ="button" value = "Finish Sentence" onclick="replace();">
    </BODY>
    </html>
      

  6.   

    //****进行主窗体里,用window.open("main.aspx","onices","statu=no")就可以了