下拉菜单的javascript语法
var abc=document.getElementById("abc");
//添加选项
abc.add(new Option("选项文本","选项值);
//删除选项
abc.remove(0);//删除第一项
abc.options.length=0;//删除所有选项
var selIdx=abc.selectedIndex;//取得当前的选中项的序号
var selOpt=abc.options[abc.selectedIndex];//取得当前的选中项
//遍历整个下拉列表的javascript代码
for(var i=0;i<abc.options.length;i++)
{
var selOpt=abc.options[i];
document.write(selOpt.text);//显示选项文本
document.write(selOpt.value);//显示选项值
}
<select id="abc" >
</select>