<select name=sel onchange="bao(this.options[this.options.selectedIndex].value)">
<option value="">请选择
<option value="1">Item 1
<option value="2">Item 2
<option value="3">Item 3
</select>
<script>
function bao(s)
{
      txt.value+=s;
      //选择后,让第一项被选中,这样,就有Change啦.
      document.all.sel.options[0].selected=true;
}
</script>
<textarea id=txt></textarea>

相关文章:

  • 2021-09-14
  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-14
  • 2021-11-09
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
  • 2022-12-23
  • 2022-12-23
  • 2021-05-18
相关资源
相似解决方案