我有一个用于新闻的 JSON 网址。
http://www.alcaldiamunicipiosucre.gob.ve/contenido/api/appmob/noticias/?dev=1
我正在尝试使用以下方法检索此信息:
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("http://www.alcaldiamunicipiosucre.gob.ve/contenido/api/appmob/agenda/?dev=1",function(result){
$.each(result, function(i, field){
$("div").append(field + " ");
});
});
});
});
</script>
</head>
<body>
<button>Get JSON data</button>
<div></div>
</body>
</html>
请帮忙,这个例子适用于这个页面:
告诉我我做错了什么。我无法从 json 获取信息。
非常感谢您提前。