首页 > 代码库 > jquery调用页面的方法
jquery调用页面的方法
本文转载:http://www.cnblogs.com/chenxizhang/archive/2009/05/28/1491250.html
有些朋友问到,能不能在jquery代码中调用后台cs页面的服务器方法呢?答案是可以的
1. 首先,该方法必须是静态的,而且必须声明WebMethod
[WebMethod]
public static string PageHelloWorld()
{
return "Hello,world";
}
2. 调用代码与webservice的非常类似
///这个例子演示了如何调用页面的静态方法
function TestCallPageMethod() {
$.ajax({
type: "POST",
contentType: "application/json",
url: "mypage.aspx/PageHelloWorld",
data: "{}",
dataType: ‘json‘,
success: function(result) {
alert(result.d);
}
});
}
jquery调用页面的方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。