メニュー

東京・小金井市のWEB制作会社の豆知識

MEMORANDUM

「javascript」で入力フォームを制限

入力フォームの制作で「その他」が選択された時だけテキストボックスを有効にしてほしいと依頼されたので「javascript」による方法をメモ

javascript

function Dture(objId){
	document.getElementById(objId).disabled = true;
}
function Dfalse(objId){
	document.getElementById(objId).disabled = false;
}

HTML

<input type="radio" name="reason" value="理由1" onclick="Dture('other_reason');" id="reason">理由1
<input type="radio" name="reason" value="理由2" onclick="Dture('other_reason');" id="reason">理由2
<input type="radio" name="reason" value="理由3" onclick="Dture('other_reason');" id="reason">理由3
<input type="radio" name="reason" value="" onclick="Dfalse('other_reason');" id="reason">その他
<input type="text" name="other_reason" id="other_reason">

「その他」選択時のみテキストボックスの書き込みが可能です。

RANKING

人気記事

同一カテゴリーの記事