这是我的 jsonp 提要: http: //www.letheatredelorient.fr/saison/data.jsonp(JSONLint 有效)
这是我的 getJSON 脚本:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function () {
$.getJSON("http://www.letheatredelorient.fr/saison/data.jsonp?callback=", function (data) {
$.each(data.Items, function (i, node) {
var title = node.titre;
$("#myTitle").html(title);
});
});
});
</script>
</head>
<body>
<div id="myTitle"></div>
</body>
</html>
这真的很简单。但是,它获取提要,但不解析它。有任何想法吗?