0
我有2個複選框(是/否)與插件I檢查(http://icheck.fronteed.com),當是檢查沒有,將取消選中,反之亦然我想要的。如何切換I檢查複選框
<label class="checkbox-inline i-checks"> <input asp-for="Yes" type="checkbox" id="myicheckboxid1"/> Yes </label>
<label class="checkbox-inline i-checks"> <input asp-for="No" type="checkbox" id="myicheckboxid2"/> No </label>
的Javascript
$('.i-checks').iCheck({
checkboxClass: 'icheckbox_square-green',
radioClass: 'iradio_square-green'
});
這也正是爲什麼我們有單選按鈕。爲什麼不使用它們? – Dekel
@Dekel評論是正確的,但你也可以使用jQuery'toggle' - https://api.jquery.com/toggle/ –
你好Dekel,我不使用單選按鈕,因爲我需要在某些情況下使複選框是強制性的,在其他情況下不是。 – jolynice