JS 給select新增option選項

2021-08-20 18:10:18 字數 525 閱讀 5018

js:給select新增option選項

今天遇到乙個問題,就是動態新增option到slect裡面在ie6不成功:

<

script

>

varshosetype

=document.createelement(

"select

");

shosetype.setattribute("id

","sc

");varoption="

新增成功";

shosetype.innerhtml

=option;

script

>

應該是innerhtml的問題,

把:

shosetype.innerhtml=option;

改為:

shosetype.options.add(new option("1","新增成功"));
就能得到效果:
js:給select新增option選項

js動態新增select選單 聯動選單

可能會遇見一些問題,可以見這篇文章回發或 引數無效 htmlselect 不能有型別為 literalcontrol 的子級 1 檢測是否有選中 if objselect.selectedindex 1 else 說明沒有選中 2 刪除被選中的項 objselect.options objselec...

js給動態新增的元素新增屬性

將一段標籤動態新增到div中,給這段標籤的img標籤設定width 100 一開始設定了新增類名 內容 const content res.data.data.info.content document.getelementbyid content innerhtml content var a d...

給easyui input元素新增js原生方法

當前專案中一直使用easyui框架,現在產品要求將某個easyui textbox中只能輸入數字,又因為easyui numberbox的字首0的個數不能做成無限個,所以只能在easyui textbox的基礎上進行修改了。easyui的input的元素是在html原生的input元素上進行的一次封...