System.InvalidOperationException: 缺少参数

来源:互联网 发布:淘宝流量来源有哪些 编辑:程序博客网 时间:2024/05/21 06:56
 $.ajax({
                   type:"POST",
                   async:false,
                   contentType:"application/x-www-form-urlencoded",
                   url:"http://localhost/Test/Service/ServiceForJquery.asmx/HelloWorld",
                   data:"{str:'hahaha'}",
                   dataType:'json',
                   success:successFunction,
                   error:errorFunction
                
                });

 });

改为:

$("#Button1").click(function(){
                typeValue=$("#Text1").val();
                $.ajax({
                   type:"POST",
                   async:false,
                   contentType:"application/x-www-form-urlencoded",
                   url:"http://localhost/Test/Service/ServiceForJquery.asmx/HelloWorld",
                   data:{str:'hahaha'},
                   dataType:'json',
                   success:successFunction,
                   error:errorFunction
                
                });
 });

0 0
原创粉丝点击