<body onunload="window.open('新窗口的文件名.htm')">在Firefox火狐浏览器5.0.1 没用,在IE8却有用,知道的请回答下!

解决方案 »

  1.   

    onunload在firefox下只对关闭Tab有效,关闭整个浏览器窗口无效,可以改用:onbeforeunload
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    <script>
    window.onbeforeunload =function ()   
    {   
       alert("alert");    
    }  
    </script>
    </head>
    <body>
    </body>
    </html>
      

  2.   

    本帖最后由 net_lover 于 2011-07-23 21:17:48 编辑