我有一個複選框,ID爲#cond99
;它的形式加載Ajax,這是行得通,但我想添加一個動作,它不工作。誰能幫我?Ajax複選框不會工作
jQuery = window.parent.jQuery;
jQuery(document).ready(function()
{
jQuery('input.styled').iCheck(
{
checkboxClass: 'icheckbox_minimal-orange',
radioClass: 'iradio_minimal-orange',
increaseArea: '40%' // optional
});
jQuery('input.styled').iCheck('update');
jQuery("#cond999").bind("change", function()
{
jQuery('#conditions_more').toggle();
});
});
什麼是'iCheck'? –
@JamesMontagne - http://damirfoy.com/iCheck/ – j08691
iCheck是插件風格化複選框和收音機 https://github.com/damirfoy/iCheck –