感謝作者的無私分享!
版權聲明:本文為博主原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接和本聲明。
本文鏈接:https://blog.csdn.net/weixin_43757001/article/details/91682494
html代碼
<!-- 下拉框選擇id -->
<div id="selectIdBox">
<select id="selectID"></select>
</div>
JavaScript代碼
var gSelectID = ["001", "002", "003", "全部"];
for (var i in gSelectID) {
var selectID = document.getElementById("selectID");
var option = document.createElement("option");// 創建option元素
option.appendChild(document.createTextNode(gSelectID[i]));
option.setAttribute("value", gSelectID[i]);
selectID.appendChild(option);
}
