gpt4 book ai didi

Asp.Net(C#) Jquery Ajax 与 WebMethod 调用问题

转载 作者:行者123 更新时间:2023-12-01 08:27:43 24 4
gpt4 key购买 nike

隐藏代码:

 [WebMethod]
public static string emp()
{
return "BlaBla";
}

ASPX页面:

$(document).ready(function() {

$.get("TestPage.aspx/emp", null, function(data) {

alert(data);

})
})

消息框输出:页面上的TestPage.aspx代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>
</title>
<style>
tr
{
background-color: red;
color: White;
}
</style>

如何制作返回字符串?

谢谢。

最佳答案

使用

$(document).ready(function() {
// Add the page method call as an onclick handler for the div.
$("#Result").click(function() {
$.ajax({
type: "POST",
url: ""TestPage.aspx/emp",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Replace the div's content with the page method's return.
$("#Result").text(msg.d);
}
});
});
});

在您的页面中使用

<div id="Result">Click here to return the string</div>

关于Asp.Net(C#) Jquery Ajax 与 WebMethod 调用问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2514917/

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