JavaScriptの、select内でのonChangeについて

[上に] [前に] [次に]
1999/07/15(木) 14:05:11
select文の内容が変わったら、その内容をtextフォームに
表示させたいのですが、以下の文では、null表示になってしまいます。
どうすれば、optionの内容を表示させることができるでしょうか?

[sample]
<html>
<head>
<body>
<form name="Test">
<select name="Sel" onChange="this.form.Text.value=this.form.Sel.value">
<option value="1">1
<option value="2">2
<option value="3">3
</select>
<input type=text name="Text">
</form>
</body>
</html>

たこすけ 1999/07/15(木) 14:12:05
> onChange="this.form.Text.value=this.form.Sel.value"
onChange="this.form.Text.value=this[this.selectedIndex].value"

[HomePage] 1999/07/15(木) 14:21:13
[[解決]]
ども、ありがとうございます。
できました。

[上に] [前に] [次に]