51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

jQuery的ajax

今天公司实习生问我jQuery的ajax怎么写,这玩意不是很简单吗

|---------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 1 2 3 4 5 6 7 8 9 10 11 12 13 | hljs javascript $.ajax({ url: "/cowBeer", //url method: "post", //请求方式 contentType: "application/json", //参数类型 data: JSON.stringify({ //这里面是参数 "name":"cowBeer" }), success: function (res) { console.log(res); //处理返回的数据 }, error: function (res) { //错误处理 } |

赞(0)
未经允许不得转载:工具盒子 » jQuery的ajax