& lt腳本& gt
var?shosetype = document . createelement(“select“);?//創建選擇標簽?
shosetype . set attribute(“id“,“sc“);//將select的id設置為“sc”
document . body . appendchild(shosetype);//將選擇添加到正文
var?option =“& lt;選擇權?value =“1“& gt;添加成功
shosetype.innerHTML = option//添加要選擇的選項
& lt/script & gt;2、選項。添加
//根據select,找到對象。
var?obj = document . getelementbyid(‘my select‘);?//獲取id為“mySelect”的選擇元素
//添加壹個選項?
obj.add(新?Option(“文本“,“值“));?//添加選擇選項;這只能在IE中有效?
obj.options.add(新的?Option(“文本“,“值“));?//添加select選項,兼容IE和firefox。