我有以下的Web服务; [WebMethod]
public string HelloWorld()
{
return "Hello World";
}这是存货标准,没有改动的等级装饰师。我有这个jQuery方法;var webMethod = "http://localhost:54473/Service1.asmx/HelloWorld"; $.ajax({
type: "POST",
contentType: "application/json; charset=utf-8",
data: "{}",
dataType: "json",
url: webMethod,
success: function(msg){ alert(msg.d); },
error: function (XMLHttpRequest, textStatus, errorThrown) {
alert(errorThrown);
}});这是一个POST操作,因为稍后我需要将数据发布到它。当我执行jQuery时,我会得到一个“No Transfer”错误返回。我还应该提到的一点是,jQuery存储在我的机器上的一个简单的HTML文件中,WebService也运行在我的机器上。HTML页面上没有代码,它只是一个网页,而不是一个c#项目或任何东西。谁能给我指出正确的方向吗?
3 回答
慕娘9325324
TA贡献1783条经验 获得超4个赞
jQuery.support.cors = true;
- 3 回答
- 0 关注
- 308 浏览
添加回答
举报
0/150
提交
取消