用Json获取到数据库中的值,这段代码中要怎样添加上表格(table))
$(function(){$("#send").click(function(){$.ajax({type:"GET",url:"/web/JsonServlet",da...
$(function () {
$("#send").click(function() {
$.ajax({
type:"GET",
url:"/web/JsonServlet",
dataType:"json",
success: function (data) {
$("#resText").empty();
var html = '';
$.each(data, function (index, users) {
$.each(users, function (index, user) {
html+= user.id+"     "+
user.name+"     "+
user.age+"     "+
user.sex+"     "+
user.password+"<br/>";
});
});
$("#resText").html(html);
}
});
});
})
</script> 展开
$("#send").click(function() {
$.ajax({
type:"GET",
url:"/web/JsonServlet",
dataType:"json",
success: function (data) {
$("#resText").empty();
var html = '';
$.each(data, function (index, users) {
$.each(users, function (index, user) {
html+= user.id+"     "+
user.name+"     "+
user.age+"     "+
user.sex+"     "+
user.password+"<br/>";
});
});
$("#resText").html(html);
}
});
});
})
</script> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询