如何使用jQuery捕获<input type="checkbox" />
的检查/取消选中事件?
答案 0 :(得分:159)
<input type="checkbox" id="something" />
$("#something").click( function(){
if( $(this).is(':checked') ) alert("checked");
});
编辑:当复选框因点击之外的其他原因而更改时,执行此操作将无法捕获,例如使用键盘。要避免此问题,请收听change
而不是click
。
要以编程方式检查/取消选中,请查看Why isn't my checkbox change event triggered?
答案 1 :(得分:40)
如果我们将一个标签附加到输入复选框,则点击会影响标签吗?
我认为最好使用.change()函数
<input type="checkbox" id="something" />
$("#something").change( function(){
alert("state changed");
});
答案 2 :(得分:24)
使用:checked选择器确定复选框的状态:
$('input[type=checkbox]').click(function() {
if($(this).is(':checked')) {
...
} else {
...
}
});
答案 3 :(得分:12)
对于JQuery 1.7+使用:
$('input[type=checkbox]').on('change', function() {
...
});
答案 4 :(得分:4)
使用下面的代码段来实现此目的。:
$('#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');
}
});
答案 5 :(得分:3)
根据我的经验,我必须利用该活动的当前目标:
$("#dingus").click( function (event) {
if ($(event.currentTarget).is(':checked')) {
//checkbox is checked
}
});
答案 6 :(得分:2)
使用click事件与MSIE的最佳兼容性
$(document).ready(function() {
$("input[type=checkbox]").click(function() {
alert("state changed");
});
});
答案 7 :(得分:1)
此代码可满足您的需求:
<input type="checkbox" id="check" >check it</input>
$("#check").change( function(){
if( $(this).is(':checked') ) {
alert("checked");
}else{
alert("unchecked");
}
});
另外,您可以在jsfiddle
上查看答案 8 :(得分:-1)
$(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>