大家有没有好的办法:
当加载一个页面的时候就屏蔽掉ie的菜单栏目和地址栏。谢谢

解决方案 »

  1.   

    IE6sp1下测试正常,其他浏览器无法保证效果!<!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>
        <title> new document </title>
        <meta name="generator" content="editplus" />
        <meta name="author" content="Gao YiXiang" />
        <meta name="email" content="[email protected]" />
        <meta name="keywords" content="javascript dhtml dom" />
        <meta name="description" content="I love web development." />
    </head>
    <body>
        <script type="text/javascript">
        <!--
    window.open("", "_blank", "toolbar=no, location=no, width=640, height=480", false);
        //-->
        </script>
    </body>
    </html>
      

  2.   

    更正!
    IE6sp1下测试正常,其他浏览器无法保证效果!<!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>
        <title> new document </title>
        <meta name="generator" content="editplus" />
        <meta name="author" content="Gao YiXiang" />
        <meta name="email" content="[email protected]" />
        <meta name="keywords" content="javascript dhtml dom" />
        <meta name="description" content="I love web development." />
    </head>
    <body>
        <script type="text/javascript">
        <!--
    var requestUrl = "http://www.google.com";
    var newWin = window.open(requestUrl, "_blank", "toolbar=no, location=no, width=640, height=480", false);window.opener = null;
    window.close();
        //-->
        </script>
    </body>
    </html>