这是我的jquery代码
$(window).unload(function(){
chat_leave()
});
我想在窗口卸载时运行以下功能。但它不适用于Firefox。
function chat_leave() {
$http.post('/chat/leave/',{chatIdList:$scope.chat_room_id}).then(function (response) {});
}
上面的jquery代码在chrome中工作得很好但在firefox中没有用于上述查询的其他解决方案。