##jQuery部分
1. 判断option是否被选中
$(“#id”).is(“:checked”) //false代表未选中,true代表选中
2. 获取select选中的值
$(“#mySelect option:selected”).text()
$(“#mySelect”).find(‘option:selected’).text()
$(“#mySelect”).val()
3. 获取select选中的索引
$(“#mySelect”).get(0).selectedIndex
4. 删除option
$(“#myOption”).remove()