icheck 动态设置选中,判断是否选择

来源:互联网 发布:金鹰汇淘宝是正品嘛 编辑:程序博客网 时间:2024/06/05 02:04


                            $(this).iCheck('check');


 //启用禁用上级编号
            $('#OnPar').on('ifUnchecked', function (event) {
                $("#tbParBudCode").prop('disabled', true);
                $("#tbParBudCode").trigger("chosen:updated");
            });
            $('#OnPar').on('ifChecked', function (event) {
                $("#tbParBudCode").prop('disabled', "");
                $("#tbParBudCode").trigger("chosen:updated");
            });

原创粉丝点击