jquery中ajax的几种方式

时间:2022-09-30 19:38:30

三种简写:

  $.get(URL,data,function(data,status,xhr),dataType)

  $(selector).post(URL,data,function(data,status,xhr),dataType)

  $(selector).getJSON(url,data,success(data,status,xhr))

一、$.get(URL,data,function(data,status,xhr),dataType)

  jquery中ajax的几种方式

二、$(selector).post(URL,data,function(data,status,xhr),dataType)

  jquery中ajax的几种方式

三、$(selector).getJSON(url,data,success(data,status,xhr))

  jquery中ajax的几种方式

四、$.ajax({name:value, name:value, ... })

$.ajax({
type: "POST", //data 传送数据类型。post 传递
dataType: 'json', // 返回数据的数据类型json
url: "/site/abc", // yii 控制器/方法
cache: false,
data: {tel: tel}, //传送的数据
error:function(){
alert("数据传输错误");
},success: function (data) {
if(window.console){
console.log(data);
}
}
})

  jquery中ajax的几种方式

参考:http://www.runoob.com/jquery/jquery-ref-ajax.html