Ajax方法及常用属性

Posted 青蛙跳跳

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax方法及常用属性相关的知识,希望对你有一定的参考价值。

$(# id).click(funtion(){
$.ajax{
type:"post",
data:{name: $(#id) .val() },
async:"true",//默认 异步提交
traditional:true, //表示传递的是数组
dataType:"text",//预期服务器返回的数据类型 String,text,json,xml,html,script,
contentType: 类型:String 默认值: "application/x-www-form-urlencoded"。发送 信息至服务器时内容编码类型
success:function(data){
if(data.success){
.........................
return true;
}else{
............................
return true;
}
}
}
})
 
注:ajax 前台用traditional:true,后台使用springmvc 时参数这样写,可得到数据
@RequestParam("test") Integer[] test
 
 
 
 
 
 
 
 

以上是关于Ajax方法及常用属性的主要内容,如果未能解决你的问题,请参考以下文章

Ajax技术之XMLHttpRequestXMLHttpRequest常用方法和属性

UITableView 常用属性及方法

delphi7各常用属性及事件详解

Dart基础: List常用属性及方法;

js中Prototype属性解释及常用方法

常用 Math 属性及方法