我在 jQuery 中使用了一些函数,例如:
$(window).one('beforeunload', function() {
//my code
});
但我真的很想知道是什么触发了这个事件以及如何触发的。
我尝试了以下代码:
$(window).one('beforeunload', function(e) {
alert(JSON.stringify(e));
});
但它对循环结构提出了例外。当然,尽管必须有一些其他的方式来区分和调试它。
我将如何应用它?
我想看看是什么触发了这个事件,是链接、提交的表单、javascript、页面刷新还是来回按钮或其他什么,在这种情况下一切都很好。但是,如果它是由打开外部应用程序的调用触发的,我想丢弃该事件并返回 null。
外部应用程序启动示例:
<a href="skype:your_skype_name?call" >
有任何想法吗?
解决了
这就是我解决它的方法。
我只是先做一些脚本链接,以获得对事件的更多控制:
<a href="javascript:void(0)" id="skype_click_ok"
然后我创建一个全局变量来存储 beforeunload 的状态:
var dontunload=0;
然后我手动处理链接,但设置 location.href,并更改变量状态:
$('#skype_click_ok').click(function(){
dontunload=1;
location.href='skype:marilynbrusas?call';
});
现在我实际的 beforeunload 事件,请注意one()
也更改为bind()
:
$(window).bind('beforeunload', function() {
if (dontunload==1) dontunload=0; //if triggered from our skype - do nothing, yet cancel state for the next call
else { //Do the actual code
// Fade out, before leaving the page.
$('html#my_html').stop(true,false).css('overflow','hidden').animate({opacity:0},2000);
// Lock content with invalid image hack
$('body#my_body').prepend(
$('<div>').attr({style:'position:fixed;height:100%;width:100%;left:0;top:0;z-index:900100;background-image:url(in-your-face)'})
);
// unbind the event
$(this).unbind('beforeunload');
}
});
编辑3
其实并没有解决。这个技巧在 IE 中不起作用,甚至来自 javascript:void(0) 链接的触发器也不起作用......