通过XMLHttpRequest和jQuery实现ajax的几种方式(2)

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有字节限制;

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wggjxf.html