• 博客园logo
  • 会员
  • 周边
  • 众包
  • 新闻
  • 博问
  • 闪存
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
掩耳盗心
博客园    首页    新随笔    联系   管理    订阅  订阅

ckeditor字数限制

var maxlength = 200;
   _editor=CKEDITOR.replace("ckeditor",{height:'130px'});
   _editor.on('key',function(event){
		var oldhtml = _editor.document.getBody().getHtml();
		var description = oldhtml.replace(/<.*?>/ig,"");
		var etop = $("#cke_1_top");
		var _slen = maxlength-description.length;
		var canwrite = $("<label id='canwrite'>还可以输入200字</label>");
		if(etop.find("#canwrite").length<1){
			canwrite.css({border:'1px #f1f1f1 solid','line-height':'28px',color:'#999'});
			etop.prepend(canwrite);
		}
		var _label = etop.find("#canwrite");
		if(description.length>maxlength){
			//alert("最多可以输入"+maxlength+"个文字,您已达到最大字数限制");
			_editor.setData(oldhtml);
			_label.html("还可以输入0字");
		}else{
			_label.html("还可以输入"+_slen+"字");
		}
	});

  

posted @ 2014-10-29 10:49  剑在心中  阅读(4982)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3