我有这个带有 jQuery AJAX 的 .aspx 网站。
当我没有按钮时,它可以正常工作。
当我用按钮包装 AJAX 调用时,它不起作用。没有错误,没有成功警报,没有 AJAX 请求,控制台中没有任何内容。它只是停止。我不知道为什么:(
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="WebApplication1.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script>
$(document).ready(function () {
$("#button1").click(function () {
$.ajax({
url: 'WebForm1.aspx',
success: function (data) {
$('#comments').html(data);
console.log("success");
}
});
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<button id="button1">get recent comments</button>
<div id="comments" runat="server">
</div>
</div>
</form>
</body>
</html>