(function() {
	var _ajax = $.ajax;
	$.ajax = function(opts) {
		//实现自己的逻辑
		_ajax(opts);
	};
})();

  

相关文章: