 
					aluckdog
					大概这样子。。。//多个提交链接列表var postList = [{  url : 'url1',      // 提交地址
  cb  : function(){} //提交该地址成功后的回调},{  url : 'url2',  cb  : function(){}
},{  url : 'url3',  cb  : function(){}
}];//遍历提交链接列表,逐个提交postList.forEach(function(item){
  $.post(item.url, { name: "John", time: "2pm" },item.cb);
});