gpt4 book ai didi

javascript - 在 Javascript 中将 JSON 值设置为 HTML 表?

转载 作者:行者123 更新时间:2023-11-29 18:01:06 25 4
gpt4 key购买 nike

 function loadUserTable(userType){
$.ajax({
type: "POST",
url: "loadUserTable.html",
data: "userType=" + userType,
success: function(response){

alert(response);

},
});
}

我还在努力,我打印输出警报并得到如下

 [{
"userId":1,
"email":"santosh.jadi95@gmail.com",
"mobile":"9900082195",
"gender":"male",
"qualification":"1",
"dob":"2016-01-01",

"login":{
"loginId":1,
"userName":"santosh",
"password":"santosh",
"userType":"admin"
}
}]

我想在 HTML 表中使用上述 JSON 值,这可能吗?如果是,那么我只想知道,它是怎么做到的?

最佳答案

解决了,谢谢大家的支持

 function loadUserTable(userType){
$.ajax({
type: "POST",
url: "loadUserTable.html",
data: "userType=" + userType,
success: function(response){
var obj = JSON.parse(response);
$("#tableId").html("");
var tr+="<tr><th>User ID</th><th>User Name</th></tr>";
for (var i = 0; i < obj.length; i++){
tr+="<tr>";
tr+="<td>" + obj[i].userId + "</td>";
tr+="<td>" + obj[i].login.userName + "</td>";
tr+="</tr>";
}
$("#tableId").append(tr);
}
});
}

关于javascript - 在 Javascript 中将 JSON 值设置为 HTML 表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34945211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com