基本 radio 盒

<div class="adv_filter">
    <li>
        <input type="radio" name="letter_type" data-custom="Text" value="0"> Text</li>
    </li>
        <li>
            <input type="radio" name="letter_type" data-custom="Text" value="0"> Text</li>
    </li>
</div>

iCheck转换
<!-- iCheck output format
<div class="adv_filter">
    <li>
        <div class="iradio_square-orange checked" aria-checked="true" aria-disabled="false" style="position: relative;"><input type="radio" name="letter_type" data-custom="Text" value="0" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"><ins class="iCheck-helper" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins></div> Text</li>

        <li>
            <div class="iradio_square-orange" aria-checked="false" aria-disabled="false" style="position: relative;"><input type="radio" name="letter_type" data-custom="Text" value="0" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"><ins class="iCheck-helper" style="position: absolute; top: -20%; left: -20%; display: block; width: 140%; height: 140%; margin: 0px; padding: 0px; border: 0px; opacity: 0; background: rgb(255, 255, 255);"></ins></div> Text</li>

</div> -->

如您所见,选中的内容已附加到div。
    $(document).ready(function () {
        $('input').iCheck({
            checkboxClass: 'icheckbox_square-orange',
            radioClass: 'iradio_square-orange',
            increaseArea: '20%' // optional
        });
        $("li").on("click", "input", function () {
            var val = $(this).val();
            //updateDataGrid(val);
            alert(val);
        });

    });

问题和描述

提供的javascript代码在添加icheck插件之前可以正常工作,
我想知道如何在icheck插件中获得相同的结果。它简单易行,在单选按钮上,将值存储在变量中,然后将其进一步传递给函数。

现场示例:http://jsfiddle.net/9ypwjvt4/

iCheck:http://fronteed.com/iCheck/

最佳答案

将处理程序附加到ifChanged事件:

$('input').on('ifChecked', function(event){
  alert($(this).val()); // alert value
});

11 ways to listen for changes:
  • ifClicked-用户单击定制输入或分配的标签
  • ifChanged-输入的检查,禁用或不确定状态已更改
  • ifChecked-输入的状态已更改为选中的
  • ifUnchecked-已删除检查状态
  • ifToggled-输入的检查状态已更改
  • ifDisabled-输入的状态已更改为禁用
  • ifEnabled-禁用状态已删除
  • ifIndeterminate-输入的状态更改为不确定
  • ifDeterminate-不确定状态已删除
  • ifCreatedinput-只是定制的
  • ifDestroyed-定制已删除

  • JSFIDDLE

    10-04 22:33