最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - window.unload not working in jquery - Stack Overflow

programmeradmin0浏览0评论

Here I have an anchor tag in my html page which will go to Google when I click. I have a jQuery function which needs to be fired when the page leaves.

$(window).unload(function(){
    alert('fffffffff');
 });

I found this works fine in a video tutorial. But it's not working for me. Using firefox. help

Here I have an anchor tag in my html page which will go to Google when I click. I have a jQuery function which needs to be fired when the page leaves.

$(window).unload(function(){
    alert('fffffffff');
 });

I found this works fine in a video tutorial. But it's not working for me. Using firefox. help

Share Improve this question edited Sep 14, 2013 at 7:07 Rich 5,7319 gold badges44 silver badges63 bronze badges asked Sep 14, 2013 at 6:06 ShameerShameer 2331 gold badge5 silver badges15 bronze badges 4
  • Are there any errors in the console? – Austin Brunkhorst Commented Sep 14, 2013 at 6:12
  • 1 possible duplicate of $(window).unload is not firing – Barmar Commented Sep 14, 2013 at 6:29
  • Do not use alert,prompt or confirm in unload method – Voonic Commented Sep 14, 2013 at 7:08
  • @shadow prompt and confirm also not working – Shameer Commented Sep 14, 2013 at 7:57
Add a ment  | 

2 Answers 2

Reset to default 5

Its working fine, you just need to remove the alert, as some browsers don't allow alert on unload event.

$(window).unload(function(){
   console.log("hello");
});

try this http://jsfiddle/vyMdF/

Just run it again and you can check the console.

You can refer over here $(window).unload is not firing

window.onbeforeunload = function() {
    return "Are you sure you wish to leave the page?";
}
发布评论

评论列表(0)

  1. 暂无评论