@634
634 - JavaScript - チェックボックスの一括選択

JavaScript チェックボックスの一括選択

Advertisement

サンプル

複数のチェックボックスを一括選択する。
すきな動物を選択してください。




キリン
ライオン

すべて選択/すべて解除

ソースコード

function allChange(check){
	var index;
	if(check){
		for(index = 0; index < document.form.check.length; index++){
			document.form.check[index].checked = true;
		}
	}else{
		for(index = 0; index < document.form.check.length; index++){
			document.form.check[index].checked = false;
		}
	}
}

Advertisement

Advertisement

ショートカット

634
634ブログ
このカテゴリのトップページに戻る
Incubator(Pukiwiki)
634ラボ
   UIコレクションギャラリー
   ZO-3ジェネレーター

サイト検索


Y!ログール