假设result的数据是这个:
javascript
{
"code":"200",
"data":[
{"id":111,"userName":"张三","userPassword":"123"},
{"id":222,"userName":"李四","userPassword":"123"},
{"id":333,"userName":"王五","userPassword":"123"},
],
"msg":"登陆成功",
}
然后呢,我们就可以遍历这个result对象。
result.data : 表示你想要遍历的对象是什么。
index 是下标。
obj 就代表你想要遍历的每一个元素。
javascript
<script>
$.ajax({
url: "/LoginServlet",
data: {"name": name, "pwd": password},
dataType: "json",
type: "post",
success: function (result) {
if (result.code == "200") {
alert(result.msg);
}
$.each(result.data, function (index, obj) {
$("#111").html(obj.id);
$("#222").html(obj.userName);
$("#333").html(obj.userPassword);
})
}
})
</script>