我是 javascript 的新手,我想使用 javascript 显示 json 文件的内容。我的问题是 html 页面无法显示 Json 文件的内容,它是空白的!我知道我正确地获取它。我的本地驱动器上有这个名为 data.json 的 Json 文件。我也更改了文件的地址,但它不起作用。
你能告诉我是什么原因吗?谢谢,
我把代码放在这里
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"> </script>
<script>
$(function() {
var people = [];
$.getJSON("home/Documents/data.json", function(data) {
$.each(data.person, function(i, f) {
var tblRow = "<tr>" + "<td>" + f.firstName + "</td>" +
"<td>" + f.lastName + "</td>" + "<td>" + f.job + "</td>" + "<td>" + f.roll + "</td>" + "</tr>"
$(tblRow).appendTo("#userdata tbody");
});
});
});
</script>
</head>
<body>
<div class="wrapper">
<div class="profile">
<table id= "userdata" border="2">
<thead>
<th>First Name</th>
<th>Last Name</th>
<th>Email Address</th>
<th>City</th>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>