嗨,我正在尝试使用这段代码从远程主机读取 json。
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("http://xx.xxx.xxx.xx/rest/user.json",function(result){
$.each(result, function(i, field){
$("div").append(field + " ");
});
});
});
});
</script>
</head>
<body>
<button>Get JSON data</button>
<div></div>
</body>
</html>
问题是当我在浏览器中输入 url 时,我会从中获取 json。但是使用上面的jquery方法获取json失败。
有人可以在这方面提供帮助。谢谢