Jquery验证ckeditor并忽略同一表单上的隐藏字段

时间:2015-02-19 07:35:20

标签: jquery jquery-validate ckeditor

同一表格上的CKEditor和隐藏字段..

我在验证时使用忽略:[] 忽略:':隐藏' ...

但工作不正常......

$("#testform").validate({
                ignore: [],
                        rules :{    
            txt : "required",
             question: {
                    required: function() {
                        CKEDITOR.instances.question.updateElement();
                    }
                },              
            txt1 : "required",          
        }           
        });

如何验证Ckeditor并忽略隐藏字段?

参见演示:http://jsfiddle.net/UI_Designer/qu2borh1/

1 个答案:

答案 0 :(得分:3)

修复它使用ignore:“。hide”

或忽略:':hidden'工作改变隐藏

中的输入类型
$("#testform").validate({
                ignore: ".hide",
                        rules :{    
            txt : "required",
             question: {
                    required: function() {
                        CKEDITOR.instances.question.updateElement();
                    }
                },              
            txt1 : "required",          
        }           
        });