JavaScript和Jquery動態操作select下拉框
相信在前端設計中必然不會少的了表單,因為經常會使用到下拉框選項,又或是把資料動態回顯到下拉框中。因為之前牽扯到optgroup標籤時遇到了問題,沒查到太過詳細的解決方案,自己動手操作記錄一下。
首先就是我們們的老朋友"select"標籤,因為需要js、jq兩種操作,所以就定義兩個select標籤。
HTML程式碼:
<div style="width: 200px;height: 100px;margin: auto;margin-top: 100px;padding: 20px;background-color: pink;">
<select id="mySelect1" style="width: 120px;"></select>
<select id="mySelect2" style="width: 160px;"></select>
<button id="addSelect2">新增</button> <!-- 此處用於點選動態新增到mySelect2 -->
</div>
之後就是引用jq,定義js、jq操作,程式碼我都貼下面了。
JS程式碼:
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"></script>
<script type="text/javascript">
//1.動態操作 - JS方式
//這裡先定義一個json物件,用於獲取並新增到select標籤
let language={
"languageList":[
{
"groupName":"前端",
"optionName":[
{"languageName":"html"},
{"languageName":"CSS"},
{"languageName":"javascript"}
],
},
{
"groupName":"後端",
"optionName":[
{"languageName":"java"},
{"languageName":"JSP"}
]
}
]
};
//language.languageList - 資料位置
let index=0;
for (obj of language.languageList) {
//js建立optgroup標籤
let optgroup=document.createElement("optgroup");
//設定optgroup標籤的label和id值
optgroup.label=obj.groupName;
optgroup.id="optgroupId"+index;
//把建立optgroup新增到select下
document.getElementById("mySelect1").add(optgroup);
//針對optgroup標籤,新增它的option標籤
for (var i = 0; i < obj.optionName.length; i++) {
//js建立option標籤
let option=document.createElement("option");
option.value=obj.optionName[i].languageName;
option.innerHTML=obj.optionName[i].languageName;
document.getElementById("optgroupId"+index).appendChild(option);
}
index+=1; //自定義下標放在最後新增,防止新增option時id增加
}
//2.動態新增 - JQ方式
let item=0;
$("#addSelect2").click(function(){
item=item+1;
//jq點選按鈕後向下拉框新增optgroup標籤
$("#mySelect2").append("<optgroup id='optgroup"+item+"' label='生成的optgroup標籤"+item+"'></optgroup>");
let r=Math.floor((Math.random()*5)+1); //生成隨機數1-5
//把隨機數個數個的option新增到當前新增的optgroup下
for (var i = 1; i <= r; i++) {
$("#optgroup"+item).append(`<option value="`+i+`">隨機生成的option`+i+`</option>`);
}
});
</script>
需要注意的是:儘管用的id是遞增產生的,但前面的名字也不要一樣,我在測試按鈕功能的時候,沒注意就把兩種optgroup的id定義成一樣的,結果按鈕隨機生成的option都加到了相應id的mySelect1的optgroup裡面了。?
最後再貼一下執行效果
首先就是mySelect1回顯json中的資料
點選新增按鈕,新增到mySelect2