资江河畔

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

$.ajax({
type: "POST",
url: "some.php",
data: "name=John&location=Boston",
dataType : 'text',
async : false,
success: function(msg){
alert( "Data Saved: " + msg );
}
});

 

var ACT.ajax = function(data){
var result_msg = '';
this.opts = {
type : data.type,
url : data.url,
data: data.data,
dataType : text,
async : false,
success : function(data){

}
}

$.ajax({
type: opts.type,
url: opts.url,
data: opts.data,
dataType : opts.dataType,
async : false,
success: function(msg){
result_msg = msg;
}
});

this.success = function(){
return result_msg;
}
}


var t = new ACT.ajax();

 

posted on 2015-03-22 00:31  资江河畔  阅读(150)  评论(0)    收藏  举报