色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

JavaScript關(guān)于select的相關(guān)操作說(shuō)明

一、 插入option
1、DOM方法
var oSelectYear = document.getElementById("SelectYear");
var op = document.createElement("option");
op.innerHTML = "2010";
op.value = "2010";
oSelectYear.appendChild(op);

2、new Option方法
var oSelectMonth = document.getElementById("SelectMonth");
oSelectMonth.options.add(new Option(1, 1));
oSelectMonth.options.add(new Option(2, 2));

二、 清空option
var oSelectMonth = document.getElementById("SelectMonth");
oSelectMonth.options.length = 0; //清空Select里面的options

三、 設(shè)置默認(rèn)選中option
var oSelectMonth = document.getElementById("SelectMonth");
//oSelectMonth.selectedIndex = 1; //方法一:默認(rèn)選中第二項(xiàng)
//setTimeout(function() { oSelectMonth.selectedIndex = 1; }, 0); //用setTimeout延遲是為了防止dom渲染問(wèn)題
// oSelectMonth.options[1].selected = true; //方法二
oSelectMonth.options[1].setAttribute("selected", "true"); //方法三:比較推薦的用setAttribute來(lái)設(shè)置

JavaScript技術(shù)JavaScript關(guān)于select的相關(guān)操作說(shuō)明,轉(zhuǎn)載需保留來(lái)源!

鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。

主站蜘蛛池模板: 蓬溪县| 晋城| 巴马| 辽阳市| 嘉善县| 且末县| 巩留县| 呼玛县| 海林市| 浮山县| 平潭县| 伊宁县| 绥芬河市| 保亭| 赣州市| 六枝特区| 泰安市| 虎林市| 德庆县| 大姚县| 藁城市| 五莲县| 高唐县| 昭觉县| 边坝县| 苍溪县| 邻水| 石门县| 黔江区| 高平市| 府谷县| 乐昌市| 临江市| 沾益县| 麻城市| 华阴市| 原阳县| 正安县| 红桥区| 西丰县| 临颍县|