为什么没有反应
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm42.aspx.cs" Inherits="WebApplication2.WebForm42" %>
<!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 type="text/javascript" src="jquery-2.1.4.min.js"></script>
</head>
<body>
<div>
<div>
我喜欢的东西
<input type="button" value="加载" id="k"/></div>
<ul></ul>
<script type="text/javascript">
$(function () {
$("#k").bind("click", function () {
$.getJSON("kk.json", function (data) {
$("#k").attr("disabled", "true");
$.each(data, function (index, sport) {
if (index == 1) {
$("ul").append("<li>" + sport["name"] + "</li>");
}
});
});
});
});
</script></div>
</body>
</html>