ホームページ > 記事 > ウェブフロントエンド > checkbox_jquery をトラバースする jQuery の概要
チェックボックス すべて選択 キャンセル
$("#ChkAll").click(function(){
$("#divContent input[type=' チェックボックス']").attr("チェック済み",$(this).attr("チェック済み"));
});
選択したチェックボックスの値を取得します:
var arrChk=$("input[name='chk_list'][checked]");
$ (arrChk).each(function(){
window.alert(this.value);
$("#checkbox_id").attr("checked"); //CheckBox のステータスを取得します (選択されているかどうか、true/false を返します)
$("#checkbox_id").attr("checked",true); //チェックボックスのステータスをチェック済みに設定します (checked=true)