首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web Service >

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

2012-12-30 
使用$.get()方法调用webservice$(#testWS).bind(click, function () {$.get(WS1.asmx/text, { text:

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


$("#testWS").bind("click", function () {
                $.get('WS1.asmx/text', { text: $("#txt").val() }, function (data) {
                    alert(1);
                    $("#result").html($(data));
                });
            });



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


点击按钮后没反应,菜鸟求助!
[解决办法]
你要config中配置的,配置 可以get和post
[解决办法]
要在配置文件中配置,支持post和GET

热点排行