AI智能
改变未来

jquery和ajax结合


1) Low-Level Interface

$.ajaxSetup()$.ajax(url[,settings])async 			boolean,默认为true表示异步beforeSend 	回调函数,在请求发送前执行error 			回调函数,在请求错误后执行success 		回调函数,在请求成功后执行complete 		回调函数,在请求结束后执行timeout 		number,超时时间,单位为毫秒method 			string,请求方式get/post/delete/putcontentType默认值\'application/x-www-form-urlencoded; charset=UTF-8\'基本的contentTypeapplication/x-www-form-urlencodedmultipart/form-datatext/plain其他的contentTypeapplication/json...浏览器会自动发送一个OPTIONS请求data纯对象/字符串,对象会被自动转换为query string,如果是get请求,这个query string会被追加到url后面,如果data本身为字符串,无需转换。processDataboolean,默认为true表示将data(对象)自动转换为查询字符串

2) Shorthand Methods

$.get(url[,data][,success][,dataType])$.post(url[,data][,success][,dataType])

3) 如何使用jquery的ajax向服务器端发送json数据

Content-Type:applicationJSON.stringify(data)
赞(0) 打赏
未经允许不得转载:爱站程序员基地 » jquery和ajax结合