ajax 遍历select 下拉框

Posted 奔跑的小老大

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax 遍历select 下拉框相关的知识,希望对你有一定的参考价值。

html :<select id="type"   > </select>

js代码:

<script type="text/javascript"> 
//动态绑定下拉框项 
        function addnotice() { 
            $.ajax({ 
                url: "${pageContext.request.contextPath}/dictionary/jindex.action?sign=4",      //后台返回json数据
                type: "post", 
                dataType: "json", 
                contentType: "application/json", 
                traditional: true, 
                success: function (data) { 
                    for (var i in data) { 
                        var jsonObj =data[i]; 
                        var optionstring = ""; 
                        for (var j = 0; j < jsonObj.length; j++) {
                            optionstring += "<option value=\""  + jsonObj[j].name + "\">" + jsonObj[j].name + "</option>"; 
                            $("#type").html("<option value=‘请选择‘  >请选择...</option>"+ optionstring);
                        } 
                      
                        
                    } 
                }, 
                error: function (msg) { 
                    alert("出错了!"); 
                } 
            });           
        }; 
         window.onload=addnotice; //页面加载完自动加载
    </script>




























以上是关于ajax 遍历select 下拉框的主要内容,如果未能解决你的问题,请参考以下文章

Python3.x:selenium遍历select下拉框获取value值

Vue中Select下拉框用v-model绑定了一个值,用v-for遍历出来多个,改变一个下拉框的选项,其他的都会改变

如何使用Ajax实现,下拉框的效果?

ThinkPHP中ajax绑定select下拉框无法显示

怎么用ajax获取select下拉框

ajax 用serialize()传的form表单参数 传select下拉框的text值