基本收音机盒
<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);
});
});
问题和描述
在添加icheck插件之前,javascript代码正常工作, 我想知道如何在icheck插件中获得相同的结果。它很简单,在无线电点击它将值存储在变量中,然后进一步传递给函数。
实例:http://jsfiddle.net/9ypwjvt4/
iCheck:http://fronteed.com/iCheck/
答案 0 :(得分:21)
将处理程序附加到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
- 刚刚删除了自定义答案 1 :(得分:6)
尽量避免使用jquery。 您也可以使用以下代码;
$('input').on('ifChecked', function(event){
alert(event.target.value); // alert value
});
答案 2 :(得分:0)
使用此
// Check #x
$( "#x" ).prop( "checked", true );
// Uncheck #x
$( "#x" ).prop( "checked", false );
答案 3 :(得分:-1)
$('body').on('ifChecked','.icheck', function(){
//considering icheck is the class of your checkbox and it is getting generated dynamically
});