<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
</head>
<body>
<div id="content">
<ul>
</ul>
</div>
</body>
<script>
$(function () {
$.getJSON("sport.json", function (data) {
$.each(data, function (index, obj) {
$("#content ul").append("<li>" + obj["name"] + "</li>");
});
})
})
</script>
</html>