li checkbox
jqueryでチェック済みステータスを取得する方法.
私はこれが欲しいのですが、それは私を未定義にします。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked")
誰かがこれから助けてくれますか。
li checkbox
jqueryでチェック済みステータスを取得する方法.
私はこれが欲しいのですが、それは私を未定義にします。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').attr("checked")
誰かがこれから助けてくれますか。
.is(':checked')
jQuery オブジェクトで使用します。
$('#ul'+$Id+' li:nth-child('+_index+') span input:checkbox').is(':checked');
javascript で変数 $id を使用するのはなぜですか?? _index は変数ですか?
のようなチェックボックスをオンにすることができます
$(selector).prop('checked', true);
$(selector).prop('checked', false);
$(selector).attr('checked','checked');
$(selector).removeAttr('checked');
alert($(selector).is(':checked'));