我是 jQuery 的初学者,我正在尝试使用该函数解析来自 div$.getJSON
的 JSON 数据,但它不起作用。你能告诉我我该怎么做吗?这是我正在使用的代码:
<div id="json">
{"data":[
{"a":"b"},
{"a":"c"}
]}
</div>
<script>
$(document).ready(function() {
$.getJSON( $("#json").html() , function(json) {
$.each(json.data, function(index, value) { $('.data').append(value.a+'<br />'); } );
});
});
</script>
<div class="data"></div>