怎么才能得到ajax返回值 运用到其他js方法当中

2025-02-01 03:53:19
推荐回答(1个)
回答1:

$.ajax({
url:'test.php',
type:'post',
data:{},
success:function(res){
console.log(res);//返回值res
},
error:function(data,status,errorThrown){
console.log(errorThrown);
}
});