jquery使用笔记
- ajax请求,注意最后一个值的地方没有逗号
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16$.ajax({
type: "POST",
url: "mystructs/hello_jsonTest.action",
data: {
number: $("#number").val(),
userId: $('#userId').val()
},
dataType: "text", //ajax返回值设置为text(json格式也可用它返回,可打印出结果,也可设置成json)
success: function(json) {
var res = $.parseJSON(json);
alert(res.result);
},
error: function(json) {
alert(json);
}
});