<html> <head> <script type="text/javascript"> function goHome(){ var isIE = navigator.appName == "Microsoft Internet Explorer"; //alert(isIE); if(isIE){ window.opener = ""; window.open("","_self"); window.close(); } else{ /*FF 還要在 about:config 允許腳本腳本關(guān)閉窗口*/ window.close(); } } </script> </head> <body> <a href="javascript:void 0;" onclick="goHome()">點我直接關(guān)閉</a> </body> </html> |
|