1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
| 语法: $.ajax({name:value, name:value, ... }) type 规定请求的类型,(GET 或 POST),默认值为get。 url 规定发送请求的 URL。默认是当前页面。 async 布尔值,表示请求是否异步处理。默认是 true。 data 规定要发送到服务器的数据。 dataType 预期的服务器响应的数据类型,一般不需要设置。 timeout 规定请求的期限时间,默认没有期限 cache 是否缓存请求过来的数据 success(result,status,xhr) 当请求成功时运行的函数。 error(xhr,status,error) 如果请求失败要运行的函数。 complete(xhr) 无论数据请求成功与否,都会执行该函数
$.ajax({ type:"get|post", url:"数据地址", success:function(res){ console.log(res); }, error:function(err){ } });
$.ajax({ type:"get|post", url:"数据地址", timeout:5000, success:function(res){ console.log(res); }, error:function(){ }, complete:function(){ } });
|