javascript – 验证FCKeditor

前端之家收集整理的这篇文章主要介绍了javascript – 验证FCKeditor前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使用javascript验证FCKeditor的必填字段.

最佳答案
试试这个,

var EditorInstance = FCKeditorAPI.GetInstance('message') ; 
if(EditorInstance.EditorDocument.body.innerText.length<=0)
{
alert("This firld is mandatory");
EditorInstance.EditorDocument.body.focus();
return false;
}

资源:

http://dreamtechworld.wordpress.com/2008/12/06/validating-firld-in-fckeditor-using-javascript/

原文链接:https://www.f2er.com/js/429393.html

猜你在找的JavaScript相关文章