$.ajax({
type:"get",
url:"www.demo.com",
async:true,
data:{
"username":"张三",
"password":"123456"
},
dataType:"JSON",
success:function(res){
if(status===0){
alert(message);
}
}
$.ajax({
type:"get",
url:"www.demo.com",
async:true,
data:{
username:"张三",
password:"123456"
},
success:function(suc){
if(suc.status=="0"){
alert(suc.message);
}
}
});
$.ajax({
url: "www.demo.com",
async: true,
dataType: "jsonp",
type: "get",
data: {
"username":“张三” ,
"password": “123456”,
},
success: function(result) {
if(result.status=="0"){
alert(result.message);
}
},
error: function(xhr, type, errorThrown) {
}
})
})
$.ajax({
type:"get",
url:"www.demo.com",
async:true,
data:{
username:"张三",
password:"123456"
},
success:function(suc){
if(suc.status=="0"){
alert(suc.message);
}
}
});