var mySelect = document.getElementById(”testSelect”);//定位id(获取select)
var index =mySelect.selectedIndex;// 选中索引(选取select中option选中的第几个)
var text =mySelect.options[index].text; // 选中文本
var value =mySelect.options[index].value; // 选中值
mySelect.options[index].selected // 判断select中的某个option是否选中 true为选中 false 为未选中
if(mySelect.options[1].selected == true){
console.log(1)
}
$("#id").is(":checked")//为false时是未被选中的,为true时是被选中
$("#id").attr('checked')==undefined//为false时是未被选中的,为true时是被选中
$("#mySelect option:selected").text()
$("#mySelect").find('option:selected').text()
$("#mySelect").val();
$("#mySelect").get(0).selectedindex
$("#mySelect").append("<option value="+value+">"+text+"<option>");