标签: javascript jquery javascript-events
我正在寻找与ajax通讯员相同的活动:
$(document).bind("ajaxStart", function() { //do something });
但是对于各种请求,例如:
$(document).bind("requestStart", function() { //do something });
所以应该通过“href links”,window.location中的更改,表单提交等等来触发......
是否有提供此功能的脚本或可能性?
答案 0 :(得分:1)
如果您想了解何时离开页面(无论如何),您可以使用所有主流浏览器都支持的非标准beforeunload event。
beforeunload