我有一个带有 id 的复选框#cond99
;它是从 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();
});
});