私のdata.jsonは次のようになります:
{
"selection_form" : {
"entities" : {
"name":"0002" ,
"name":"0103" ,
"name":"0104" ,
"name":"0122" ,
....
このスクリプトは次のようになります
<script>
$.getJSON('data.json', function(data) {
$.each(data.selection_form.entities, function(i,item){
$("#enity").append('<p>'+data.selection_form.entities.name+'</p>');
});
});
</script>
のように ap タグでラップされたすべての名前を取得したい
<p>0002</p><p>0103</p>....
しかし、結果は姓の項目だけです。そのための解決策が見つかりません。助けが必要!