<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>挑战题</title>
<style>
table{
width:300px;
text-align:center;
border:1px solid #eee;
}
</style>
<script>
var jsondata=
[
{
"name":"mary",
"age":"18",
"sex":"male"
},
{
"name":"leon",
"age":"19",
"sex":"female"
},
{
"name":"jack",
"age":"20",
"sex":"male"
},
];
$(function () {
$("#load").bind("click", function () {
alert("~");
});
});
</script>
</head>
<body>
<div id="result">
<table>
<caption>学生资料</caption>
<tr><td colspan="4"><input id="load" type="button" value="学生资料导入"</td></tr>
<tr><th>序号</th><th>姓名</th><th>年龄</th><th>性别</th></tr>
</table>
</div>
</body>
</html>
little_hui
走向流沙
相关分类