我想加载一个简单的 json 文件并显示它的内容,但它不起作用,我不知道为什么:(
控制台上不显示任何内容。
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$.getJSON('/api/?core=users&function=getJson', function(data) {
var items = [];
console.log("ok!");
$.each(data, function(key, val) {
items.push('<li id="' + key + '">' + val + '</li>');
});
$('<ul/>', {
'class': 'my-new-list',
html: items.join('')
}).appendTo('body');
});
});
</script>
</head>
<body>
<ul class="my-new-list">
<li>test</li>
</ul>
</body>
</html>
加载的 JSON 数据是:
{"fruit_name":"Tomato"}
你有想法吗 ?
谢谢 !