私は初めてJSONを試しています。私はこのTwitter APIフィードを出力しようとしています。ちょうど私が間違っているところに興味がある。添付されたコードです。JSON jQuery質問
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.4.js"></script>
</head>
<body>
<ol class="result"></ol>
<script>
$.getJSON('http://api.twitter.com/1/trends/1105779.json', function(json) {
alert(json.trends.query[1]);
$('.result').html('<li>' + json.trends.query + '</li>');
});
</script>
</body>
</html>
<!-- http://api.twitter.com/1/trends/1105779.json -->
をそして私はあなたの問題が何であるかを知りたいんですか? – jfar
そのURLはJSON文字列を返しません。 – Inigoesdr
はいそれは..... – Hamish