试试这个呢?
<a href="javascript:window.opener=null;window.self.close();">&sup1;&Oslash;±&Otilde;&Agrave;&sup2;</a>

解决方案 »

  1.   

    window.opener=null
    后就不会提示了。
      

  2.   

    <html> 
    <head> 
    <title>直接关闭IE浏览器</title> 
    </head> 
    <body> 
    <OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0 id=WB width=0></OBJECT> 
    <input type="button" value="直接关闭" onclick="WB.ExecWB(45,1)"> 
    <input type="button" value="一般的关闭窗口" onclick="window.opener=null;window.close();"> 
    </body> 
    </html>