时间:2021-07-01 10:21:17 帮助过:26人阅读
//无参数调用
$(document).ready(function() {
$('#btn1').click(function() {
$.ajax({
type: "POST",
contentType: "application/json",
url: "MyWebService2.asmx/HelloWorld",
data: "{}",
dataType: 'json',
success: function(result) {
$('#dictionary').append(result); ****** 注释:vs2005回调函数中获取返回值的方式。
}
});
});
});
//无参数调用
$(document).ready(function() {
$('#btn1').click(function() {
$.ajax({
type: "POST",
contentType: "application/json",
url: "WebService1.asmx/HelloWorld",
data: "{}",
dataType: 'json',
success: function(result) {
$('#dictionary').append(result.d); ****** 注释:vs2008回调函数中获取返回值的方式。
}
});
});
});