This topic has been archived. It cannot be replied.
-
工作学习 / 专业技术讨论 / 请教高手: html/javascript网页, 想在user关闭browser的时候, 弹出个alert, 让user确认一下, 请问怎么实现? 我试了onUnload不行, onBeforeUnload因为兼容性问题不在考虑之内. 多谢.
-piglet(spring);
2005-5-13
(#2293694@0)
-
我想这个好象并没有一个通用的方法的检测。
你可以先检测BROWSE的版本及类型,针对各种BROWSER做处理,如IE中,你可以用ONBeforeunload,在NETSCAPE中找一找,有没有相应的用法。。。
-hk_tnt(HK_TNT);
2005-5-13
(#2294240@0)
-
<BODY onunload="javascript:alert('unload')" onbeforeunload="javascript:alert('beforeunload')" >
为什么不行呢?
-kyleliu(kyle);
2005-5-14
(#2294941@0)
-
Really easy: <script> alert("test") </script>
-bugfree(BugFree);
2005-5-14
(#2295314@0)