zhiming_817 发表于 2013-1-23 02:14:59

JQuery 中的Ajax调用WebServices 的总结

使用JQuery中javascript:;"target="_self">ajax方法访问web服务。

1.ajax方法需要填写:
 
JScript. code <!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->$.ajax({type:"POST",//注明 返回JsoncontentType:"application/json;utf-8",//CollegeDepartWebServices.asmx web服务名 /GetCollegeDepart 方法名url:"CollegeDepartWebServices.asmx/GetCollegeDepart",//strDepartId 参数名称 collegeId 参数值data:"{strDepartId:"+collegeId+"}",dataType:"json",success:function(result){varjson=nulltry{if(result){//因为返回的是ArrayList 所以循环取出其中的值$.each(result,function(i, n){//ddlDepart 为下来菜单。循环的向下拉菜单中添加新的选项ddlDepart.options=newOption(n.CollegeDepartTitle,n.CollegeDepartId);});}}catch(e){alert("错误>>"+e.message);return;}},error:function(data){alert(data.status+">>>"+data.statusText);}});
页: [1]
查看完整版本: JQuery 中的Ajax调用WebServices 的总结