单击时不会触发函数--AJAX / CSS

时间:2015-03-02 17:10:25

标签: javascript jquery html ajax icheck

我试图在我的一个输入中单击时触发jQuery函数。

简单的例子是这样的:

jQuery的:

<script>
$('.i-check').click(function(){
alert("The class was clicked.");
});
</script>

输入

<div class="checkbox">
  <label>
    <input class="i-check" type="checkbox" name="all-inclusive" value="6"/>All-inclusive</label>
</div>

CSS

.i-check,
.i-radio {
  display: inline-block;
  *display: inlne;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #ccc;
  cursor: pointer;
  top: 1px;
  left: -7px;
  margin-left: -13px;
  float: left;
  text-align: center;
  line-height: 20px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.i-check:before,
.i-radio:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, -25px, 0);
  -moz-transform: translate3d(0, -25px, 0);
  -o-transform: translate3d(0, -25px, 0);
  -ms-transform: translate3d(0, -25px, 0);
  transform: translate3d(0, -25px, 0);
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  color: #fff;
  font-size: 14px;
}
.i-check.hover,
.i-radio.hover {
  border: 1px solid #ed8323;
}
.i-check.checked,
.i-radio.checked {
  border: 1px solid #ed8323;
  background: #ed8323;
}
.i-check.checked:before,
.i-radio.checked:before {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.i-check.disabled,
.i-radio.disabled {
  border-color: #d9d9d9 !important;
}
.i-check.disabled.checked,
.i-radio.disabled.checked {
  background: #ccc !important;
}
.i-check.i-check-stroke.checked {
  background: #fff;
}
.i-check.i-check-stroke.checked:before {
  color: #ed8323;
}

如果我将css类名改为其他东西然后i-check - 然后运行它,它就可以了。所以我知道它与我的CSS有关,我只是无法弄清楚是什么?

2 个答案:

答案 0 :(得分:1)

注意CSS中的伪类使用“:”而不是“。”符号。所以例如.i-check.hover应该是.i-check:hover。与“禁用”和“已检查”伪类相同。

如果您使用的是iCheck插件,请使用他们建议的回调方法 例如:

$('input').on('ifClicked', function(event){
   alert(event.type + ' callback');
 });

他们还有回调“ifChecked”和“ifUnchecked”

答案 1 :(得分:0)

使用api,效果很好。对于使用此插件的其他人,在检查状态下,这应该为您完成。

<script>
        $('.i-check input').on('ifChecked', function(event){
            alert('function started');
});
</script>

这里要提到的一件事是,每当放置此代码时,请确保根据其他jQuery脚本正确放置它!将代码放在所有脚本调用的最底部,以确保它不是它无法工作的原因。

相关问题