我将CKEditor 3(以前的FCKEditor)集成到我的asp.net MVC(v3为具体)应用程序中。我的模型中有一个requiredAttribute需要编辑器的字段,但客户端验证不能正常使用CKEditor。当我尝试提交时,我已经将数据输入到CKEditor中,所需的验证没有看到数据。如果我再次尝试重新提交,那么它是有效的。我在网路上看过,找不到解决方案。我也使用Jquery并使用Jquery适配器
http://docs.cksource.com/CKEditor_3.x/Developers_Guide/jQuery_Adapter
解决方法
如果有人正在寻找更通用的方式来做到这一点,你可以添加这个javascript:
$(document).ready(function () { if ($('.text-editor')) { $('.text-editor').ckeditor(); $('input[type=submit]').bind('click',function() { $('.text-editor').ckeditorGet().updateElement(); }); } });
并在textarea上使用.text-editor css类,它的工作原理很好。
@Html.TextAreaFor(model => model.Description,new { @class = "text-editor" })
我找到这个解决方案比另一个更好,希望它可以帮助!