<select id="citys" style="width: 220px; height: 35px;padding: 0 8px;" >
<option>2222</option>
</select>
方法一
<script>
var myselect = document.getElementById("citys");//根据selectid获取对象
var index = myselect.selectedIndex;//获取选中项的索引
var city = myselect.options[index].text;//获取选中项的text值
</script>
方法二
<script>
$("select[name='selectTest']").change(function () {
var selectValue = $(this).children('option:selected').val(); //这就是selected的值
SetCommon(selectValue)
});
</script>
//拿到select对象
var myselect=document.getElementById("select");
//拿到选中项的索引,selectedIndex代表的是你所选中项的index
var index=myselect.selectedIndex ;
//拿到选中项options的value
myselect.options[index].value;
//拿到选中项options的text
myselect.options[index].text;
//拿到选中项的其他值,比如这里的url
myselect.options[index].getAttribute('url');
//select根据value默认选中
document.getElementById("Status").value = 1;