作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的分页在第一列和每行都有复选框。
如果选中任何复选框,它将自动从顶部滑下全宽框,我使用 jquery 这里是代码...
$(':checkbox').change(function() {
// use the :checked selector to find any that are checked
if ($('#checkbox').length) {
$(".checkbox-tools").animate({top: '0px'});
} else {
$('.checkbox-tools').slideUp('slow');
}
});
<!--Cancel print button.-->
$(document).ready(function(){
$("#cancel-chedkbox").click(function(){
$(".checkbox-tools").animate({top: '-450px'});
$('input:checkbox').removeAttr('checked');
});});
选中复选框并向下滑动时,效果非常好。
如果人未选中并且没有选中复选框,并且我想自动向上滑动全宽框而不是人单击关闭按钮(如果根本没有选中)怎么办。
我该如何解决这个问题!
上午
最佳答案
要取消选中复选框,请使用:
$('input:checkbox').prop('checked', false)
要检查复选框,请使用:
$('input:checkbox').is(':checked')
要对选中的复选框进行计数,请使用:
$('input:checked').length
类似的帖子:checking if a checkbox is checked?
在您的代码中,所有复选框都有 ID #checkbox
- ID 必须是唯一的,这里您有工作代码 http://jsfiddle.net/s8Xju/1/ :
$(':checkbox').change(function() {
// use the :checked selector to find any that are checked
if ($(':checkbox:checked').length > 0) {
$(".checkbox-tools").animate({top: '200px'});
} else {
$('.checkbox-tools').animate({top: '-450px'});
}
});
关于jquery 复选框未选中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22545561/
我是一名优秀的程序员,十分优秀!