http://www.csdn.net/develop/Read_Article.asp?Id=19170

解决方案 »

  1.   

    window.opener = null;
    window.close();
      

  2.   

    to fason(阿信):多谢,可是我改的程序要完成一个功能还是不行,在IE5.0下如下
    test1.html
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <!--
    by fason(2003-5-20)
    -->
    </head>
    <body onload="setTimeout('CloseWin()',1000);window.open('test2.html')">
    <script language="JavaScript">
    <!--
    function CloseWin()
    {
    var ua=navigator.userAgent
    var ie=navigator.appName=="Microsoft Internet Explorer"?true:false
    if(ie){
        var IEversion=parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))))
     if(IEversion< 5.5){
        var str  = '<object id=noTipClose classid="clsid:ADB880A6-D8FF-11CF-9377-00AA003B7A11">'
        str += '<param name="Command" value="Close"></object>';
        document.body.insertAdjacentHTML("beforeEnd", str);
        document.all.noTipClose.Click();
        }
        else{
        window.opener =null;
        window.close();
        }
    }
    else{
    window.close()
    }
    }
    //-->
    </script>
    </body>
    </html>要求是双击打开页面test1.html,在打开的同时再打开test2.html,同时关闭test1.html
    在IE6.0下执行成功,但在IE5下执行失败!
    是不是什么地方我做错了!请帮帮忙!