为什么 getJSON 方法只适用于本地文件?如果我想从本地获取 json,它可以工作,但是如果我用 http 设置 url,它就不起作用。为什么?
<!DOCTYPE html>
<html>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<script>
$.getJSON("http://www.address.com/getTables.php", function (data) {
$.each(data, function (i, table) {
$("#tables").append("<p>" + table.id + " " + table.tabname + "</p>");
});
});
</script>
<body>
<div id="tables"></div>
</body>
</html>
返回的 JSON:
[{ "id":"12", "tabname":"cukry" }, { "id":"11", "tabname":"table" }]