<html>
<head>
<script type = 'text/javascript'>
function select(s){
txt.value =s;
//选择后,让第一项被选中
document.all.sel.options[0].selected = true;
}
</script>
</head>
<body>
<select name = "sel" οnchange= "select(this.options[this.options.selectedIndex].value)">
<option value = "">请选择
<option value = "1">Item1
<option value = "2">Item2
<option value = "3">Item3
</select>
<textarea id = "txt"></textarea>
</body>
</html>
运行的效果如下
当点击select,选择某一条option时,这个记录发生改变,处罚onchage事件
onclick事件会在点击这个控件时发生
这两个事件的发生时间和触发条件不同