窗口卸载在Firefox中无法正常工作

时间:2014-06-24 05:48:43

标签: javascript firefox onunload

我必须在浏览器关闭时调用post service并通知用户数据。我让它在Chrome和Internet Explorer上运行,但在Firefox 30上它永远不会被调用。以下是代码片段,如果有任何其他解决方案,请告诉我..

window.onunload = function() {
  $.ajax({
  url: "http://localhost:9200/doLogout",
  type: "POST",
  data: {type: 3},
  success: function (data, textStatus, jqXHR) {
    // ...
  },
  error: function (jqXHR, textStatus, errorThrown) {
    // ...
  }
});

0 个答案:

没有答案