jQuery Call to WebService returns “No Transport” error

前端 未结 8 1623
渐次进展
渐次进展 2020-11-22 15:19

I have the following web service;

    [WebMethod]
    public string HelloWorld()
    {
        return \"Hello World\";
    }

It\'s stock st

8条回答
  •  爱一瞬间的悲伤
    2020-11-22 16:03

    Add this: jQuery.support.cors = true;

    It enables cross-site scripting in jQuery (introduced after 1.4x, I believe).

    We were using a really old version of jQuery (1.3.2) and swapped it out for 1.6.1. Everything was working, except .ajax() calls. Adding the above line fixed the problem.

提交回复
热议问题