当前位置: 代码迷 >> Web Service >> 应用$.get()方法调用webservice
  详细解决方案

应用$.get()方法调用webservice

热度:374   发布时间:2016-05-02 02:47:56.0
使用$.get()方法调用webservice
JScript code
$("#testWS").bind("click", function () {                $.get('WS1.asmx/text', { text: $("#txt").val() }, function (data) {                    alert(1);                    $("#result").html($(data));                });            });


C# code
[WebMethod]        [System.Web.Script.Services.ScriptMethod(UseHttpGet = true)]        public string text(string text)        {            return text;        }


点击按钮后没反应,菜鸟求助!

------解决方案--------------------
你要config中配置的,配置 可以get和post
------解决方案--------------------
要在配置文件中配置,支持post和GET
  相关解决方案