var selectedIndex = oSelct.selectedIndex; //获取选中项的索引值 var selectedValue = oSelct.options[selectedIndex].value; //获取选中项的值 var selectedText = oSelct.options[selectedIndex].text; //获取选中项的文本值
oSelct.options.length = 0; //清空 oSelct.options.add(new Option("Text","Value")); //添加项