FCK判断内容是否为空(如果只是去空格,那么这种方式是错误的)
FCK判断内容是否为空(如果只是去空格,那么这种方式是错误的)
发布时间:2016-12-29 来源:查字典编辑
摘要:在网上找到一段合适的代码,与大家分享。复制代码代码如下://判断fck的内容是否为空varoEditor=FCKeditorAPI.GetI...

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

复制代码 代码如下:

//判断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, "");

}

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新网页编辑器学习
热门网页编辑器学习
编程开发子分类