Open GoogleCodeExporter opened 8 years ago
$.fn.extend({ /** * @param {Object} op: {type:GET/POST, url:ajax请求地址, data:ajax请求参数列表, callback:回调函数 } */ ajaxUrl: function(op){ var $this = $(this); $this.trigger(DWZ.eventType.pageClear); $.ajax({ type: op.type || 'GET', url: op.url, data: op.data, cache: false, success: function(response){ var json = DWZ.jsonEval(response); if (json[DWZ.keys.statusCode]==DWZ.statusCode.error){ if (json[DWZ.keys.message]) alertMsg.error(json[DWZ.keys.message]); } else { $this.empty().append(response).initUI(); //$this.html(response).initUI(); //.html方法可能会过滤2个form if ($.isFunction(op.callback)) op.callback(response); }
Original issue reported on code.google.com by zmh0...@gmail.com on 11 Nov 2014 at 1:11
zmh0...@gmail.com
Original issue reported on code.google.com by
zmh0...@gmail.com
on 11 Nov 2014 at 1:11