select-option 动态选中状态

来源:互联网 发布:ubuntu 等待安装 编辑:程序博客网 时间:2024/05/18 00:27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>select-option</title>
</head>
<body>
<select id="sel" onchange="cc()">
<option>山药</option>
<option>地瓜</option>
<option>小开</option>
<option>小胖</option>
</select>
<span id="res"></span>
<script>
window.onload=function(){
cc();
}
function cc(){
var sel = document.getElementById("sel");
var res=sel.options[sel.selectedIndex].value;
document.getElementById("res").innerHTML=res;
}
</script>
</body>
</html>
原创粉丝点击