我不知道我错过了什么,是否有需要更改的 IIS 设置,可能吗?
$(document).ready(function () {
function AjaxSuccess(result) {
alert('result: ' + result);
}
function AjaxError(result) {
alert("error");
alert(result.status + ' ' + result.statusText);
}
$(".hlp").click(function () {
var myVal= $(this).val();
var id = $(this).attr('id');
$.ajax({
type: "POST",
url: "AjaxWebMethods.aspx/GetHelpText",
contentType: "application/json; charset=utf-8",
data: "{'helpText' : '" + id + "'}",
dataType: "json",
success: AjaxSuccess,
error: AjaxError
});
});
});
我的网络方法如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class AjaxWebMethods : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e){ }
#region Exposed WebMethods
[System.Web.Services.WebMethod()]
public string GetHelpText(string helpItem)
{
string helpText = "testing web method";
return helpText;
}
#endregion
}
我不断收到 2 个弹出窗口“错误”,然后是 501 错误。请帮我解决这个问题。