ajax(post)

Posted zc_boy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax(post)相关的知识,希望对你有一定的参考价值。

$.ajax({
url:‘/comm/test1.php‘,
type:‘POST‘,           //GET
async:true,         //或false,是否异步
data:{
name:‘yang‘,age:25
},
timeout:5000,        //超时时间
dataType:‘json‘,      //返回的数据格式:json/xml/html/script/jsonp/text
beforeSend:function(xhr){
console.log(xhr)
console.log(‘发送前‘)
},
success:function(data,textStatus,jqXHR){
console.log(data)
console.log(textStatus)
console.log(jqXHR)
},
error:function(xhr,textStatus){
console.log(‘错误‘)
console.log(xhr)
console.log(textStatus)
},
complete:function(){
console.log(‘结束‘)
}
})



























以上是关于ajax(post)的主要内容,如果未能解决你的问题,请参考以下文章

$.ajax with type: post 和 $.post 有啥区别

Ajax get和post区别

ExtJS Ajax POST 与代理 POST

PHP AJAX表单POST请求 - HTML表单POST /提交与AJAX / Javascript示例/教程

使用 AJAX POST POST 数据

使用 AJAX POST POST 数据