코드가 있습니다
<input type="checkbox" id="chk" value="value" />
<label for="chk">Value </label>
<br/>
<input type="button" id="But1" value="set value" />
<br />
<input type="button" id="But2" value="read checked" />
자바 스크립트 :
$(document).ready(function () {
console.log("Ready ...");
registerHandlers();
function registerHandlers() {
$('#But1').click(function () {
$('#chk').prop('checked', !$('#chk').is(':checked'));
});
$('#But2').click(function () {
var chk1 = $('#chk').is(':checked');
console.log("Value : " + chk1);
});
$('input[type="checkbox"]').change(function () {
var name = $(this).val();
var check = $(this).prop('checked');
console.log("Change: " + name + " to " + check);
});
}
});
jQuery를 사용하여 확인란 변경을 처리하는 방법은 무엇입니까? 체크 박스를 변경하려면 핸들러를 넣어야합니다.
[최신 정보]
체크 박스와 몇 개의 버튼이 있습니다. 각 버튼은 확인란을 변경할 수 있습니다. 체크 박스를 변경하는 이벤트를 잡는 방법은 무엇입니까?
[최신 정보]
이 예제 jsfiddle 에서 핸들 변경 확인란이 필요합니다 . 상자를 클릭하면 “확인”버튼이 표시되지 않습니다.
답변
:checkbox
선택기 사용 :
$(':checkbox').change(function() {
// do stuff here. It will fire on any checkbox change
});
답변
필드의 ID도 사용할 수 있습니다.
$('#checkbox1').change(function() {
if($(this).is(":checked")) {
//'checked' event code
return;
}
//'unchecked' event code
});
답변
희망, 이것이 도움이 될 것입니다.
$('input[type=checkbox]').change(function () {
if ($(this).prop("checked")) {
//do the stuff that you would do when 'checked'
return;
}
//Here do the stuff you want to do when 'unchecked'
});
답변
$("input[type=checkbox]").on("change", function() {
if (this.checked) {
//do your stuff
}
});
답변
$('#myForm').on('change', 'input[type=checkbox]', function() {
this.checked ? this.value = 'apple' : this.value = 'pineapple';
});
답변
나에게 removeProp이 Chrome에서 제대로 작동하지 않는 것 같습니다 :
jsfiddle
$('#badBut1').click(function () {
checkit('Before');
if( $('#chk').prop('checked') )
{
$('#chk').removeProp('checked');
}else{
$('#chk').prop('checked', true);
}
checkit('After');
});
$('#But1').click(function () {
checkit('Before');
if( $('#chk').prop('checked') )
{
$('#chk').removeClass('checked').prop('checked',false);
}else{
$('#chk').addClass('checked').prop('checked', true);
}
checkit('After');
});
$('#But2').click(function () {
var chk1 = $('#chk').is(':checked');
console.log("Value : " + chk1);
});
$('#chk').on( 'change',function () {
checkit('Result');
});
function checkit(moment) {
var chk1 = $('#chk').is(':checked');
console.log(moment+", value = " + chk1);
};
답변
이름으로 라디오 가치를 얻다
$('input').on('className', function(event){
console.log($(this).attr('name'));
if($(this).attr('name') == "worker")
{
resetAll();
}
});