文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>FCK判断内容是否为空(如果只是去空格,那么这种方式是错误的)

FCK判断内容是否为空(如果只是去空格,那么这种方式是错误的)

时间:2010-12-29  来源:大空翼

      在网上找到一段合适的代码,与大家分享。      

 //判断fck的内容是否为空
 var oEditor = FCKeditorAPI.GetInstance('content'); //这里的content是FCK的ID值
                if(GetLength("content")<=0) {
                    alert('内容不能为空!');
                    oEditor.Focus();
                    return false;
                }


function GetLength(str){
                var oEditor = FCKeditorAPI.GetInstance(str) ;
                var checkContent= oEditor.EditorDocument ;
                var contentLength ;
                if ( document.all ){
                    contentLength= checkContent.body.innerText.trim().length ;
                }
                else{
                    var r = checkContent.createRange() ;
                    r.selectNodeContents( checkContent.body ) ;
                    contentLength= r.toString().trim().length ;
                }
                return contentLength;
            }

            //去掉字符串的空格
            String.prototype.trim = function()
            {
                return this.replace(/(^[\s]*)|([\s]*$)/g, "");
            }
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载