基本用法
<select onchange="change(event)">
<option>铛铛1</option>
<option selected='selected' value=‘ggg’>铛铛2</option>//selected设置选中项
</select>
js操作选择列表
function change(event){
console.log(event.target.options,event.target.options.selectedIndex,event.target.value,event.target.disabled);
event.target.options//列表选项类数组对象
event.target.options.selectedIndex//选中的下标通过更改它来控制哪一项选中;
event.target.value//选中项的value值
event.target.disabled//布尔值 select 标签是否可用
new Option(text,value)//创建一个Option选项
event.target.disabled=true;
event.target.options.selectedIndex=2;//第三项选中
// event.target.options.add(new Option('健身房和大家','ggg'))//添加一个选项
// event.target.options.length=0;//删除所有选项
event.target.options.remove(event.target.options.selectedIndex)//移除一个选项
event.target.options[0]=new Option('fff','yyy');//更改现有选项
}