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值