Tag: icheck

iCheck检查checkbox是否被选中

我正在使用iCheck插件来定制checkbox。 当一个或多个checkbox被选中时,我需要显示特定的文本,而当没有选中时隐藏文本。 我目前的代码显示在第一次点击的文本,但不会隐藏它,除非我再次单击2次。 我有多个checkbox,并希望显示文本,如果他们之一检查其他隐藏文字。 有人有什么想法吗? 该插件有: ifChecked ifChanged ifClicked ifUnchecked ifToggled ifDisabled ifEnabled……. callback….这是插件function $('input').iCheck({ checkboxClass: 'icheckbox_square-blue', radioClass: 'iradio_square-blue', increaseArea: '20%' // optional }); 这是我试过的 $('input').on('ifChecked', function(event){ $(".hide").toggle(); }); HTML <input type="checkbox"> <div class"hide" style="display:none">Hi there</div>