jQuery Checkbox事件处理程序错误

时间:2015-09-11 15:43:58

标签: javascript jquery checkbox javascript-events event-handling

我最近发现了一个我似乎无法弄清楚jQuery和复选框事件处理的问题。

应该发生的事情是:

  • 单击与特定复选框关联的框图像。
  • 当盒子图像被标记为已选中时(通过添加.checked类表示) 并显示右上角的复选标记指示符) 复选框也应该被选中。

当我反复/快速点击灰色框图像图块时,您将看到有问题的错误。默认行为(切换已检查的属性)似乎在事件处理程序触发后随机发生。因此,这会导致关联的选定框图像和复选框随机地彼此不同步,从而提供不准确的数据。

请转到https://jsfiddle.net/coreyds/5wLk2rge/4/

查看此示例和操作中的错误

您是否有解决方案可以在jQuery或纯JavaScript中修复此问题?

以下是相关代码:

HTML:

<div class="container">
<div class="row">
    <div class="col-sm-6">
        <div class="form-group hwl-inline-checkbox-group">
            <label class="checkbox-inline">
                <div id="sa-checkbox-img1" class="sa-checkbox-img">
                    <i class="fa fa-check"></i>
                    <i class="fa fa-briefcase fa-3x"></i>
                    <label class="icon-img-label">WORK</label>
                </div>
                <input type="checkbox" id="imgCheck1" name="surrounding_area" class="sa-checkbox" value="work" />
            </label>

            <label class="checkbox-inline">
                <div id="sa-checkbox-img2" class="sa-checkbox-img">
                    <i class="fa fa-check"></i>
                    <i class="fa fa-building fa-3x"></i>
                    <label class="icon-img-label">SCHOOL</label>
                </div>
                <input type="checkbox" id="imgCheck2" name="surrounding_area" class="sa-checkbox" value="school" />
            </label>

            <label class="checkbox-inline">
                <div id="sa-checkbox-img3" class="sa-checkbox-img">
                    <i class="fa fa-check"></i>
                    <i class="fa fa-meh-o fa-3x"></i>
                    <label class="icon-img-label">NO PREFERENCE</label>
                </div>
                <input type="checkbox" id="imgCheck3" name="surrounding_area" class="sa-checkbox" value="no preference" />
            </label>
        </div>

    </div>
</div>
<!-- end .row -->

的jQuery

$('.sa-checkbox-img').click(function(){
    var $this = $(this),
        sa_checkbox = $this.find($('.sa-checkbox'));

    if( !$this.hasClass('checked')){
        $this.addClass('checked');
        sa_checkbox.prop('checked', true);
    } else {
        $this.removeClass('checked');
        sa_checkbox.prop('checked', false);
    }
});

CSS

.container,
.row {
    margin-top: 20px;
}

h5 {
    text-align: center;
}

.sa-checkbox-img {
  color: #999;
  border: 5px solid #999;
  padding: 10px 25px;
  text-align: center;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-transition-duration: 250ms;
  -o-transition-duration: 250ms;
  -webkit-transition-duration: 250ms;
  transition-duration: 250ms;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
}

.sa-checkbox-img label.icon-img-label {
  display: block;
}

.sa-checkbox-img i.fa.fa-check {
  display: none;
  color: white;
}

.sa-checkbox-img:hover {
  border-color: #009fd4;
  color: #009fd4;
  cursor: default;
}

.sa-checkbox-img.checked {
  border-color: #009fd4;
  color: #009fd4;
  cursor: default;
}

.sa-checkbox-img.checked i.fa.fa-check {
  display: block;
  background: #009fd4;
  position: absolute;
  top: -5px;
  right: -5px;
  color: white;
  padding: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

2 个答案:

答案 0 :(得分:1)

为了更好地完成绑定&#34; $("document:contains('Badges')") - label&#34;对需要使用&#34; input - for="someId"&#34;对。当需要检查id="someId 上的click时,您的错误就是检查.sa-checkbox-img阻止内部标签上的click。因为您在此复选框上点击某个带有复选框触发.sa-checkbox事件的内部标签的所有时间,但点击标签上的click复选框。

working example

祝你好运!

答案 1 :(得分:0)

哇这个bug很难破解,直到我意识到代码中的小错误!我不知道发生了什么,但我终于解决了。您可以找到解决方案here。我也能够浓缩你的逻辑。主要变化是标签元素。你忘了了for属性!

<label for="imgCheck1" class="icon-img-label">SCHOOL</label>