onbeforeunload 在每个页面打开后调用

发布于 2024-11-15 16:48:28 字数 764 浏览 0 评论 0原文

我对 onbeforeunload 有疑问。我只想在关闭浏览器后删除一些表的数据。它适用于所有浏览器,但不适用于 IE。当我在 IE 中工作时,如果我转到另一个链接,onbeforeunload 函数就会执行,但其他浏览器只有在关闭后才会执行。

我的代码是

<script language="javascript">
function fnUnloadHandler() {
xmlhttp=null; 
if (window.XMLHttpRequest) 
  {// code for Firefox, Opera, IE7, etc. 
     xmlhttp=new XMLHttpRequest(); 
  } 
else if (window.ActiveXObject) 
 {// code for IE6, IE5 
    xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
 } 

if (xmlhttp!=null) 
 {  
    xmlhttp.open("GET","http://yourhost/del_cart_actionFile.php",true); 
    xmlhttp.send(null); 
 } 
 else 
 { 
    alert("Your browser does not support XMLHTTP."); 
 } 
}
</script>
 <body onbeforeunload="fnUnloadHandler()">
</body>

请帮帮我..

I have an issue with onbeforeunload. I just want to delete some tables' data after closing browser. Its working with all browser, however its not working with IE. When I working in IE, if I go to another link, onbeforeunload function executes, but other browser only execute after closing.

my code is

<script language="javascript">
function fnUnloadHandler() {
xmlhttp=null; 
if (window.XMLHttpRequest) 
  {// code for Firefox, Opera, IE7, etc. 
     xmlhttp=new XMLHttpRequest(); 
  } 
else if (window.ActiveXObject) 
 {// code for IE6, IE5 
    xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
 } 

if (xmlhttp!=null) 
 {  
    xmlhttp.open("GET","http://yourhost/del_cart_actionFile.php",true); 
    xmlhttp.send(null); 
 } 
 else 
 { 
    alert("Your browser does not support XMLHTTP."); 
 } 
}
</script>
 <body onbeforeunload="fnUnloadHandler()">
</body>

please help me out..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

明月松间行 2024-11-22 16:48:28

您可以使用 jQuery 库,它基于 javascript,它可以为您处理所有这些浏览器不兼容问题。

You can go for the jQuery library, it is based on javascript, it handles all these browser incompatibilities for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文