アットウィキロゴ

json3

<html>
<head>
<meta charset="utf-8">
<title>json</title>
<script src="jquery.js"></script>
<script type="text/javascript" src="pro05.js"></script>  
</head>
<body>
<p id="memo">メモ</p>
<input type="button" value="ボタン" onClick="sample()" />
</body>
</html>
 
 
function sample(){
 
$.getJSON("data4.json", function(data){
 
var i;
var str;
 
str="";
 
for(i in data){
str=str+data[i].name+data[i].age;
}
 
for(i in data){
$("#memo").text(str);
}
 
});
 
}
 
[
	{ "name": "あか", "age": 21 },
	{ "name": "あお", "age": 56 },
	{ "name": "ねこ", "age": 33 }
]
 
最終更新:2013年09月29日 01:28