<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>無標題文檔</title>
</head>
<body>
<select id="sel" οnchange="cge()">
<option value="1">4</option>
<option value="2">5</option>
<option value="3">6</option>
</select>
</body>
<script>
function cge(){
var sel=document.getElementById('sel');
var sid=sel.selectedIndex;
alert('value值:'+sel[sid].value+',option值:'+sel[sid].innerHTML);
}
</script>
</html>