我试图使用在单独的HTML文件中编写的JQuery AJAX调用来调用ASP .NET WebService的简单hellowworld函数,即ASP .NET中的非aspx文件。 这是我的AJAX调用的代码,它在基于aspx的Web客户端中运行良好。
$.ajax({
type: "POST",
url: "/Test1/RSSReader.asmx/GetRSSReader",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$("#output").text(msg.d);
},
error: function (e) {
$("#output").html("WebSerivce error " + e.responseText);
}
});
我想使用.html文件调用相同的webservice和相同的方法,但它返回错误。我尝试提供服务器地址,即localhost,但仍然没有响应。