//判断编辑器是否为空
var oeditor = FCKeditorAPI.GetInstance('content'); //这里的content是fck的id值
if(oeditor.GetXHTML()==""|| oeditor.GetXHTML() == "<br />") {
alert('内容不能为空!');
oeditor.Focus();
return false;
}

相关文章:

  • 2021-06-11
  • 2021-09-23
  • 2021-06-08
  • 2021-08-08
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-29
  • 2021-12-04
  • 2021-11-27
  • 2021-11-28
  • 2021-11-28
  • 2021-07-04
相关资源
相似解决方案