ฉันจะตรวจสอบ / ยกเลิกการเลือกเหตุการณ์<input type="checkbox" />
ด้วย jQuery ได้อย่างไร
ฉันจะตรวจสอบ / ยกเลิกการเลือกเหตุการณ์<input type="checkbox" />
ด้วย jQuery ได้อย่างไร
คำตอบ:
<input type="checkbox" id="something" />
$("#something").click( function(){
if( $(this).is(':checked') ) alert("checked");
});
แก้ไข: การดำเนินการนี้จะไม่เกิดขึ้นเมื่อช่องทำเครื่องหมายเปลี่ยนไปด้วยเหตุผลอื่นนอกเหนือจากการคลิกเช่นการใช้แป้นพิมพ์ เพื่อหลีกเลี่ยงปัญหานี้ฟังแทนchange
click
สำหรับการตรวจสอบ / ยกเลิกการเลือกโดยใช้โปรแกรมให้ดูที่เหตุใดเหตุการณ์การเปลี่ยนแปลงช่องทำเครื่องหมายของฉันจึงไม่ถูกทริกเกอร์
change
แทนที่จะคลิก ฉันกำลังอัปเดตคำตอบ
การคลิกจะส่งผลกระทบต่อป้ายกำกับหากเราติดไว้ในช่องทำเครื่องหมายอินพุต?
ฉันคิดว่าควรใช้ฟังก์ชัน. change () ดีกว่า
<input type="checkbox" id="something" />
$("#something").change( function(){
alert("state changed");
});
ใช้:ตัวเลือกที่เลือกเพื่อกำหนดสถานะของช่องทำเครื่องหมาย:
$('input[type=checkbox]').click(function() {
if($(this).is(':checked')) {
...
} else {
...
}
});
สำหรับ JQuery 1.7+ ให้ใช้:
$('input[type=checkbox]').on('change', function() {
...
});
ใช้ข้อมูลโค้ดด้านล่างเพื่อดำเนินการนี้:
$('#checkAll').click(function(){
$("#checkboxes input").attr('checked','checked');
});
$('#UncheckAll').click(function(){
$("#checkboxes input").attr('checked',false);
});
หรือคุณสามารถทำได้โดยใช้กล่องกาเครื่องหมายเดียว:
$('#checkAll').click(function(e) {
if($('#checkAll').attr('checked') == 'checked') {
$("#checkboxes input").attr('checked','checked');
$('#checkAll').val('off');
} else {
$("#checkboxes input").attr('checked', false);
$('#checkAll').val('on');
}
});
สำหรับการสาธิต: http://jsfiddle.net/creativegala/hTtxe/
จากประสบการณ์ของฉันฉันต้องใช้ประโยชน์จาก currentTarget ของเหตุการณ์:
$("#dingus").click( function (event) {
if ($(event.currentTarget).is(':checked')) {
//checkbox is checked
}
});
รหัสนี้ตอบสนองความต้องการของคุณ:
<input type="checkbox" id="check" >check it</input>
$("#check").change( function(){
if( $(this).is(':checked') ) {
alert("checked");
}else{
alert("unchecked");
}
});
นอกจากนี้คุณสามารถตรวจสอบได้ในjsfiddle
ใช้เหตุการณ์คลิกเพื่อให้เข้ากันได้ดีที่สุดกับ MSIE
$(document).ready(function() {
$("input[type=checkbox]").click(function() {
alert("state changed");
});
});
$(document).ready(function(){
checkUncheckAll("#select_all","[name='check_boxes[]']");
});
var NUM_BOXES = 10;
// last checkbox the user clicked
var last = -1;
function check(event) {
// in IE, the event object is a property of the window object
// in Mozilla, event object is passed to event handlers as a parameter
event = event || window.event;
var num = parseInt(/box\[(\d+)\]/.exec(this.name)[1]);
if (event.shiftKey && last != -1) {
var di = num > last ? 1 : -1;
for (var i = last; i != num; i += di)
document.forms.boxes['box[' + i + ']'].checked = true;
}
last = num;
}
function init() {
for (var i = 0; i < NUM_BOXES; i++)
document.forms.boxes['box[' + i + ']'].onclick = check;
}
HTML:
<body onload="init()">
<form name="boxes">
<input name="box[0]" type="checkbox">
<input name="box[1]" type="checkbox">
<input name="box[2]" type="checkbox">
<input name="box[3]" type="checkbox">
<input name="box[4]" type="checkbox">
<input name="box[5]" type="checkbox">
<input name="box[6]" type="checkbox">
<input name="box[7]" type="checkbox">
<input name="box[8]" type="checkbox">
<input name="box[9]" type="checkbox">
</form>
</body>