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
| AJAX,后台与服务器数据少量交换,使网页异步更新,创建快速动态网页的技术 $.get('https://www.baidu.com/get/'); $.post('https://www.baidu.com/post',{ name:"菜鸟教程", url:"http://www.runoob.com" }) $('input') //查找所有value // onchange
$.ajax({ type: 'POST', url: 'http://www.baidu.com/api/user/info', dataType: 'json', data: { args: "value", }, xhrFields: { withCredentials:true //支持附带详细信息,可以携带cookie }, crossDomain: true, //请求偏向外域,支持跨域请求 success: function (data) { console.log(data); } });
$.ajax({ type: 'GET', url: 'http://www.baidu.com/s', dataType: 'json', xhrFields: { withCredentials:true }, crossDomain: true, success: function (data) { console.log(data); } });
|