出于某种原因,我似乎无法让 jQuery 在我的 asp.net 页面中工作
我已经采购了 jQuery 库,但 document.ready 函数永远不会触发
我也尝试过 window.load 函数
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Test Page</title>
<script src="script/jquery-1.7.2.js" type="text/javascript" />
<script type="text/javascript">
$(document).ready(function () {
alert('works');
});
</script>
</head>
<body">
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
</div>
</form>
</body>
</html>
谢谢