4
爲什麼你想使用$(window).unload(function(){});
超過$(window).bind('beforeunload', function(){});
jQuery的卸載VS beforeunload
而且是有約束力的使用jQuery像上面的beforeunload,並直接像這樣給它分配之間的差別:window.onbeforeunload = function() { };
爲什麼你想使用$(window).unload(function(){});
超過$(window).bind('beforeunload', function(){});
jQuery的卸載VS beforeunload
而且是有約束力的使用jQuery像上面的beforeunload,並直接像這樣給它分配之間的差別:window.onbeforeunload = function() { };
而且閱讀本:http://www.quirksmode.org/js/events_events.html#link5
在使用'直接'方式(和attachEvent)之前,jQuery總是會嘗試使用addEventListener。 addEventlistener可以取消冒泡並可以附加多個回調。
這已經在這裏解答:[http://stackoverflow.com/questions/4376596/jquery-unload-or-beforeunload] –