$(function() {
$(
"#btnOK").click(function() {
$.ajax({
//要用post方式
type:
"Post",
//方法所在页面和方法名
url:
"Demo.aspx/SayHello",
contentType:
"application/json; charset=utf-8",
dataType:
"json",
success: function(data) {
//返回的数据用data.d获取内容
alert(data.d);
},
error: function(err) {
alert(err);
}
});
//禁用按钮的提交
return false;
});
});
$(function() {
$(
"#btnOK").click(function() {
$.ajax({
type:
"Post",
url:
"demo.aspx/GetStr",
//方法传参的写法一定要对,str为形参的名字,str2为第二个形参的名字
data:
"{'str':'我是','str2':'XXX'}",
contentType:
"application/json; charset=utf-8",
dataType:
"json",
success: function(data) {
//返回的数据用data.d获取内容
alert(data.d);
},
error: function(err) {
alert(err);
}
});
//禁用按钮的提交
return false;
});
});
$(function() {
$(
"#btnOK").click(function() {
$.ajax({
type:
"Post",
url:
"demo.aspx/GetArray",
contentType:
"application/json; charset=utf-8",
dataType:
"json",
success: function(data) {
//插入前先清空ul
$(
"#list").html(
"");
//递归获取数据
$(data.d).each(function() {
//插入结果到li里面
$(
"#list").append(
"" +
this +
"");
});
alert(data.d);
},
error: function(err) {
alert(err);
}
});
//禁用按钮的提交
return false;
});
});