Jquery中$.ajax()方法参数详解
俗说好记性不如个烂笔头,下面是jquery中的ajax方法参数详解,这里整理了一些供大家参考。
1.url:
要求为string类型的参数,(默认为当前页地址)发送请求的地址。
2.type:
要求为string类型的参数,请求方式(post或get)默认为get。注意其他http请求方法,例如put和delete也可以使用,但仅部分浏览器支持。
3.timeout:
要求为number类型的参数,设置请求超时时间(毫秒)。此设置将覆盖$.ajaxsetup()方法的全局设置。
4.async:
要求为boolean类型的参数,默认设置为true,所有请求均为异步请求。如果需要发送同步请求,请将此选项设置为false。注意,同步请求将锁住浏览器,用户其他操作必须等待请求完成才可以执行。
5.cache:
要求为boolean类型的参数,默认为true(当datatype为script时,默认为false),设置为false将不会从浏览器缓存中加载请求信息。
6.data:
要求为object或string类型的参数,发送到服务器的数据。如果已经不是字符串,将自动转换为字符串格式。get请求中将附加在url后。防止这种自动转换,可以查看 processdata选项。对象必须为key/value格式,例如{foo1:"bar1",foo2:"bar2"}转换为&foo1=bar1&foo2=bar2。如果是数组,jquery将自动为不同值对应同一个名称。例如{foo:["bar1","bar2"]}转换为&foo=bar1&foo=bar2。
7.datatype:
要求为string类型的参数,预期服务器返回的数据类型。如果不指定,jquery将自动根据http包mime信息返回responsexml或responsetext,并作为回调函数参数传递。可用的类型如下:
xml:返回xml文档,可用jquery处理。
html:返回纯文本html信息;包含的script标签会在插入dom时执行。
script:返回纯文本javascript代码。不会自动缓存结果。除非设置了cache参数。注意在远程请求时(不在同一个域下),所有post请求都将转为get请求。
json:返回json数据。
jsonp:jsonp格式。使用sonp形式调用函数时,例如myurl?callback=?,jquery将自动替换后一个“?”为正确的函数名,以执行回调函数。
text:返回纯文本字符串。
8.beforesend:
要求为function类型的参数,发送请求前可以修改xmlhttprequest对象的函数,例如添加自定义http头。在beforesend中如果返回false可以取消本次ajax请求。xmlhttprequest对象是惟一的参数。
function(xmlhttprequest){
this; //调用本次ajax请求时传递的options参数
}
9.complete:
要求为function类型的参数,请求完成后调用的回调函数(请求成功或失败时均调用)。参数:xmlhttprequest对象和一个描述成功请求类型的字符串。
function(xmlhttprequest, textstatus){
this; //调用本次ajax请求时传递的options参数
}
10.success:要求为function类型的参数,请求成功后调用的回调函数,有两个参数。
(1)由服务器返回,并根据datatype参数进行处理后的数据。
(2)描述状态的字符串。
function(data, textstatus){
//data可能是xmldoc、jsonobj、html、text等等
this; //调用本次ajax请求时传递的options参数
}
11.error:
要求为function类型的参数,请求失败时被调用的函数。该函数有3个参数,即xmlhttprequest对象、错误信息、捕获的错误对象(可选)。ajax事件函数如下:
function(xmlhttprequest, textstatus, errorthrown){
//通常情况下textstatus和errorthrown只有其中一个包含信息
this; //调用本次ajax请求时传递的options参数
}
12.contenttype:
要求为string类型的参数,当发送信息至服务器时,内容编码类型默认为"application/x-www-form-urlencoded"。该默认值适合大多数应用场合。
13.datafilter:
要求为function类型的参数,给ajax返回的原始数据进行预处理的函数。提供data和type两个参数。data是ajax返回的原始数据,type是调用jquery.ajax时提供的datatype参数。函数返回的值将由jquery进一步处理。
function(data, type){
//返回处理后的数据
return data;
}
14.datafilter:
要求为function类型的参数,给ajax返回的原始数据进行预处理的函数。提供data和type两个参数。data是ajax返回的原始数据,type是调用jquery.ajax时提供的datatype参数。函数返回的值将由jquery进一步处理。
function(data, type){
//返回处理后的数据
return data;
}
15.global:
要求为boolean类型的参数,默认为true。表示是否触发全局ajax事件。设置为false将不会触发全局ajax事件,ajaxstart或ajaxstop可用于控制各种ajax事件。
16.ifmodified:
要求为boolean类型的参数,默认为false。仅在服务器数据改变时获取新数据。服务器数据改变判断的依据是last-modified头信息。默认值是false,即忽略头信息。
17.jsonp:
要求为string类型的参数,在一个jsonp请求中重写回调函数的名字。该值用来替代在"callback=?"这种get或post请求中url参数里的"callback"部分,例如{jsonp:'onjsonpload'}会导致将"onjsonpload=?"传给服务器。
18.username:
要求为string类型的参数,用于响应http访问认证请求的用户名。
19.password:
要求为string类型的参数,用于响应http访问认证请求的密码。
20.processdata:
要求为boolean类型的参数,默认为true。默认情况下,发送的数据将被转换为对象(从技术角度来讲并非字符串)以配合默认内容类型"application/x-www-form-urlencoded"。如果要发送dom树信息或者其他不希望转换的信息,请设置为false。
21.scriptcharset:
要求为string类型的参数,只有当请求时datatype为"jsonp"或者"script",并且type是get时才会用于强制修改字符集(charset)。通常在本地和远程的内容编码不同时使用。
案例代码:
$(function(){ $('#send').click(function(){ $.ajax({ type: "get", url: "test.json", data: {username:$("#username").val(), content:$("#content").val()}, datatype: "json", success: function(data){ $('#restext').empty(); //清空restext里面的所有内容 var html = ''; $.each(data, function(commentindex, comment){ html += '<div class="comment"><h6>' + comment['username'] + ':</h6><p class="para"' + comment['content'] + '</p></div>'; }); $('#restext').html(html); } }); }); });
$.ajax验证登录:
<script type="text/javascript" language="javascript"> function ibtnenter_onclick() { checklogin(); return false; } function checklogin() { if ($("#txtusername").val() == "") { alert("用户名不能为空!"); $("#txtusername").focus(); return false; } if ($("#txtpassword").val() == "") { alert("密码不能为空!"); $("#txtpassword").focus(); return false; } $.ajax({ type: "post", url: "ajax/handler.ashx?m=" + math.random(), data: "username=" + $("#txtusername").val().tostring() + "&pwd=" + $("#txtpassword").val().tostring(), success: function (data) { if (data == "1") { location.href = "index.aspx"; return true; } else { alert("请确认您输入的用户名或密码输入是否正确!"); $("#txtusername").val(""); $("#txtpassword").val(""); $("#txtusername").focus(); return false; } } }) } </script>
一般处理程序
<%@ webhandler language="c#" class="handler" %> using system; using system.web; using system.data.sqlclient; using system.web.sessionstate;//继承接口ireadonlysessionstate需要引入的命名空间 public class handler : ihttphandler, irequiressessionstate { sqlhelper helper = new sqlhelper(); public void processrequest(httpcontext context) { context.response.contenttype = "text/plain"; string username = context.request.params["username"].tostring().trim(); string pwd = context.request.params["pwd"].tostring().trim(); if (username != "" && pwd != "") { string sql = @"select * from [user] where username='"+username+"' and password='"+pwd+"' "; if (!helper.exists(sql)) { context.response.write("0"); } else { sqldatareader reader = helper.executereader(sql); while (reader.read()) { context.response.write("1"); context.session["username"] = username.tostring().trim(); context.session["pwd"] = pwd.tostring().trim(); } } } } public bool isreusable { get { return false; } } }
以上内容是小编给大家分享的jquery中$.ajax()方法参数详解,希望大家喜欢。