在使用iCheck插件的时候,
<label for="taoda" class="rad_chx_label" style="margin-right:20px;">
<input type="checkbox" id="pro1" name="isHaveDefaultProduct" value="1" />
<span style="margin-left:8px;">是</span>
</label>
<label for="remin" class="rad_chx_label">
<input type="checkbox" id="pro2" name="isHaveDefaultProduct" value="0" checked />
<span style="margin-left:8px;">否</span>
</label>
简单定义了两个label
js如下:
$(function(){
$('input[type=checkbox]').iCheck({ //注册复选框
checkboxClass: 'icheckbox_minimal-green',
});
$('input[type=checkbox]').on('ifChecked', function(event){
em=$(this);//alert(event.type + ' callback');
if(em.val()=="1"){
em.iCheck('uncheck');
}
});
});
就会发现在
if(em.val()=="1"){
em.iCheck('uncheck');
}
中的em.iCheck('uncheck');不起作用,即当点击value为1的复选框时,选中后立刻设置为未选中状态,,,,
请问各位大神应该怎么写呢?
如果没记错的话有一个toggle,用那个就行了。