我现在用到了FCK编辑器,我要判断用户输入的字符长度是否小于10个字符
  var editor=FCKeditorAPI.GetInstance("rcount");
  var content=editor.GetXHTML(true);
  if(content.value.length<10){
              alert("内容至少大于10个字符!");
              editor.Focus();
              return;
  } 但是我这样写怎么没反应啊,帮忙解决哈啊  急!!!!!!~~~~~~~~~~~~