gpt4 book ai didi

jquery - PageMethod 返回整个页面

转载 作者:行者123 更新时间:2023-12-01 00:25:12 25 4
gpt4 key购买 nike

您好,我们使用 jquery 发送 ajax 请求,但它每次都会返回页面的内容。我们正在使用 .NET Framework 版本 2

$.ajax({
type: "POST",
url: "ajaxPage.aspx/testMethod",
data: "{test:'test'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (result) {
$("#span_result").html(result.d).fadeIn();
},
error: function (msg) {
$("#span_result").hide();
}
});

//ajaxPage.aspx.cs
[System.Web.Services.WebMethod]
public static string testMethod(string test)
{
return test;
}

最佳答案

你的 web.config 中有这个吗?

<system.web>
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</httpModules>
</system.web>

关于jquery - PageMethod 返回整个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7065808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com