1. 程式人生 > >select-option 動態選中狀態

select-option 動態選中狀態

<!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>