<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
<title>挑战题</title>
</head>
<body>
<form>
<input type="text" name="name" value="请输入姓名" id="stuName"><br>
<input type="text" name="score" value="请输入成绩" id="stuScore"><br>
<input type="button" value="保存" id="b-1">
<input type="button" value="显示" id="b-2">
</form>
<ul></ul>
<script>
var $name=$("#stuName");
var $score=$("#stuScore");
var jsonStu=[];
$("#b-1").click(function(){
jsonStu.push({
name : $name.val(),
score: $score.val()
});
$name.val('');//这里是什么意思啊?为什么要写?删了可以么?
$score.val('');
});
$("#b-2").click(function(){
$.each(jsonStu,function (i) {
$('ul').append('<li><b>'+ jsonStu[i].name + '</b>的分数是<b>' + jsonStu[i].score + '</b></li>');
});
});
</script>
</body>
</html>