js获取select选中的值:
var sel=document.getElementById("select1"); var index = sel.selectedIndex; // 选中索引 albumid= sel.options[index].value;//要的值
jQuery获取下拉框选中的option:
$("#s option:selected").val();
时间: 2024-10-11 02:15:57
js获取select选中的值:
var sel=document.getElementById("select1"); var index = sel.selectedIndex; // 选中索引 albumid= sel.options[index].value;//要的值
jQuery获取下拉框选中的option:
$("#s option:selected").val();