我尝试在我的 aspx 页面中使用 ajax 调用。这是我的脚本:
<head runat="server">
<title></title>
<script type="text/javascript" src="jquery/ui/jquery-ui-1.8.23.custom.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function () {
$.ajax({
type: "POST",
url: "WebForm1.aspx/List",
data: '{}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
alert('asd');
}
});
});
</script>
</head>
这是我的服务器端代码:
[WebMethod]
public static string[] List()
{
...
}
我在 List 的第一行放了一个断点,但什么也没发生。你有什么建议,我在哪里犯了错误?