08-08
25

JS验证FCK内容是否为空

function CheckPost(){
try{
   if (GetMessageLength()==0){
         alert("内容不能为空!")
         return false
   }
  }
  catch(e){
    if (Trim(document.forms[0].Message.value)=="") {
         alert("内容不能为空!")
         try{document.forms[0].Message.focus()}catch(e){}
         return false
    }
  }
}



function GetMessageLength()
{
    var oEditor = FCKeditorAPI.GetInstance('Message') ;
    var oDOM = oEditor.EditorDocument ;
    var iLength ;

    if ( document.all )        // If Internet Explorer.
    {
        iLength = oDOM.body.innerText.length ;
    }
    else                    // If Gecko.
    {
        var r = oDOM.createRange() ;
        r.selectNodeContents( oDOM.body ) ;
        iLength = r.toString().length ;
    }
//    oEditor.InsertHtml('')
return iLength
}    


[本日志由 blurxx 于 2008-08-27 10:20 AM 编辑]
文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags: FCK
相关日志:
评论: 0 | 引用: 0 | 查看次数: 1340
发表评论
昵 称:
密 码: 游客发言不需要密码.
内 容:
验证码: 验证码
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 开启 | [img]标签 关闭