问题
$(document).ajaxStart(function() {loading.show()});
$(document).ajaxStop(function() {loading.hide()});
How to invoke an event ajaxStop in Internet Explorer? ajaxStart works without problem
回答1:
You want ajaxComplete
$(document).ajaxComplete(function() {loading.hide()});
http://api.jquery.com/ajaxComplete/
来源:https://stackoverflow.com/questions/6800570/jquery-internet-explorer-and-ajaxstop