Como faço para pegar o evento de marcar / desmarcar <input type="checkbox" />
com o jQuery?
Como faço para pegar o evento de marcar / desmarcar <input type="checkbox" />
com o jQuery?
Respostas:
<input type="checkbox" id="something" />
$("#something").click( function(){
if( $(this).is(':checked') ) alert("checked");
});
Editar: isso não será capturado quando a caixa de seleção for alterada por outros motivos que não um clique, como usar o teclado. Para evitar esse problema, ouça em change
vez de click
.
Para marcar / desmarcar programaticamente, dê uma olhada em Por que meu evento de alteração da caixa de seleção não é acionado?
change
vez de clicar. Estou atualizando a resposta
O clique afetará um rótulo se houver um anexado à caixa de seleção de entrada?
Eu acho que é melhor usar a função .change ()
<input type="checkbox" id="something" />
$("#something").change( function(){
alert("state changed");
});
Para o JQuery 1.7+, use:
$('input[type=checkbox]').on('change', function() {
...
});
Use o snippet de código abaixo para conseguir isso:
$('#checkAll').click(function(){
$("#checkboxes input").attr('checked','checked');
});
$('#UncheckAll').click(function(){
$("#checkboxes input").attr('checked',false);
});
Ou você pode fazer o mesmo com uma única caixa de seleção:
$('#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');
}
});
Para demonstração: http://jsfiddle.net/creativegala/hTtxe/
Na minha experiência, tive que aproveitar o currentTarget do evento:
$("#dingus").click( function (event) {
if ($(event.currentTarget).is(':checked')) {
//checkbox is checked
}
});
Este código faz o que você precisa:
<input type="checkbox" id="check" >check it</input>
$("#check").change( function(){
if( $(this).is(':checked') ) {
alert("checked");
}else{
alert("unchecked");
}
});
Além disso, você pode verificá-lo no jsfiddle
use o evento click para melhor compatibilidade com o 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>