$.ajax( {
type: "post", //请求方式
url : v_url, //请求路径
data : v_data,//请求参数
dataType: "json/text/html" ,//请求参数返回类型
error : function() {//错误处理
alert("error");
},
success:function(data){//成功处理
setTimeout("releaseImages()",3000);//设置时间等待处理
}
});
function releaseImages(){
alert("successful");
}
type: "post", //请求方式
url : v_url, //请求路径
data : v_data,//请求参数
dataType: "json/text/html" ,//请求参数返回类型
error : function() {//错误处理
alert("error");
},
success:function(data){//成功处理
setTimeout("releaseImages()",3000);//设置时间等待处理
}
});
function releaseImages(){
alert("successful");
}