function otherShow() {
var textarea = document.getElementById("hideme");
var x = document.forms.myForm.other_trade.value;
if (x == "other") {
textarea.style.display = 'block';
}else {
textarea.style.display = 'none';
}
}
ID=hideme
これは、アクションがトリガーされるテキスト領域を非表示にすることになっている私の JavaScript コードです。onchange="otherShow();"
<select name="trade" required="required" class="inputbox" id="trade" onchange="otherShow();">
<option value="" selected="selected"> Select one... </option>
<option value="" disabled="disabled"> ---------------------- </option>
<option value="General Labourer">Option1</option>
.......
</select>
上がセレクト、下がテキストエリア
<textarea cols="36" rows="6" class="inputbox" id="hideme" name="other_trade"></textarea>
選択の終わりに私は
<option value="Other"> Other </other>
その他を選択したときにテキストエリアを表示したい。ログインは正しいと思いますが、テキスト領域を非表示にする値に変更すると機能しませんが、変更しないでください...