JavaScript选中select
var selectID= document.getElementById("sel");
for(var i=0;i<selectID.options.length;i++){
if(selectID.options[i].innerHTML == '内容'){
selectID.options[i].selected = true;
break;
}
}
var selectID= document.getElementById("sel");
for(var i=0;i<selectID.options.length;i++){
if(selectID.options[i].innerHTML == '内容'){
selectID.options[i].selected = true;
break;
}
}