function bindCarteam0(){ //通过URL请求数据 var URL = <select:link page="/xiaoshouwl.do?method=getCarteamList"/>; $.ajax({ url:URL, type:'GET', dataType: "json", success:function(html){ var str="<option value='-1'>全部</option>"; for(var i=0;i<html.length;i++){ str+="<option value='"+html[i].id+"'>"+html[i].name+"</option>"; } $("#carteam_code").empty().html(str); } }); }
HTML代码如下:
<select:select property="carteam_code" styleId="carteam_code"> <select:option value="-1">全部</select:option> </select:select>
其中type类型有get和post两种;
post 可以传输的数据量比较大,get有字节限制;
您可能感兴趣的文章: