FCKeditor 编辑器判断值是否为空
var oEditor = FCKeditorAPI.GetInstance("<%=FCKeditor1.ClientID %>") ;
if(oEditor.GetXHTML(true).Trim().length == 0)
{
alert("请输入标题!");
return false;
}
if(oEditor.GetXHTML(true).Trim().length == 0)
{
alert("请输入标题!");
return false;
}
lei1217