「jquery入門」OnChange()でセレクトボックスを選択するコード

サンプルコード:
<select name=sel onchange="funca(this.options[this.options.selectedIndex].value)">
<option value="">please select product
<option value="1″>Item 1
<option value="2″>Item 2
<option value="3″>Item 3
</select>
<script>
function funca(s)
{
txt.value+=s;
document.all.sel.options[0].selected=true;
}
</script>
<textarea id=txt></textarea>

JavaScript

Posted by arkgame