如何使用CkEditors验证多个textareas

时间:2011-12-21 06:14:19

标签: jquery html jquery-validate

在表单中使用带有ckeditor支持的textarea。

用户可以灵活地添加任意数量的textareas,并且还可以同时加载ckeditor。

现在难以找到的是用提供的ckeditor验证静态textarea以及用户动态加载的1s。

PLZ建议我解决方案......

2 个答案:

答案 0 :(得分:0)

您可以使用以下命令枚举页面上的所有CKEDITOR实例:

for(var x in CKEDITOR.instances) {
   var inst = CKEDITOR.instances[x];
   // now you can validate the value in inst
}

答案 1 :(得分:0)

枚举页面上的所有实例。使用jquery验证所有。

 $("#my-form-submit-button").click(function(e){
     e.preventDefault();
     CKEDITOR.instances.event-body.updateElement();
     $('#event').validate({
          // Validation code will go here
     });
})

它将更新您的ckeditor并将ckeditor值分配给您集成它的textarea。