//异步获取数据 var tpAction=action+'getSearch.ashx?key='+encodeURIComponent('中国'); $.getJSON(tpAction,function(rsp){//请求成功 if(rsp.status=='1'){ var list=rsp.item; var len=list.length; if(len==0){ //没有数据直接返回 setNull(); return; } //组装数据 var s=zy_tmpl(templ,list,len); $list.append(s); }else{ alert('','加载数据失败,请重试','确定'); } },'json',function(err){//请求失败 alert('','加载失败,请检查网络设置!','确定'); },'POST',''); //csharp/6106