json 数据
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<title>挑战题</title>
</head>
<body>
<input type="button" id="inpt" value="加载JSON数据" />
<div></div>
<script type="text/javascript">
$(function(){
var json =[{
"name": "小红"
},{
"name": "小明"
},{
"name": "小米"
},{
"name": "小王"
},{
"name": "晓晓"
}]
$("#inpt").bind("click",function(){
$(this).attr("disabled","true").val("加载完毕!");
$.each(json,function(index,data){
$("div").append("姓名:"+data.name+"<br>");
})
})
});
</script>
</body>
</html>