`
chengxianju
  • 浏览: 248225 次
  • 性别: Icon_minigender_1
  • 来自: 合肥
社区版块
存档分类
最新评论

fck 添加字数统计

    博客分类:
  • php
 
阅读更多

 <div id="textCount"></div>
    <script type="text/javascript">
  window.onload=function(){
    var editors=FCKeditorAPI.GetInstance('body');
     editors.Events.AttachEvent('OnSelectionChange', editor_keydown);
     function editor_keydown(editors){
          var maxLength=420; //最大输入字数
        content= $(editors.EditorDocument.body).text();
     var len= content.length;
        if(len>420){
            alert('你已经输入的次数超过420了');return;
        }
    var sheng=maxLength-len;   
        $('#textCount').html("你还可以输入<span style='color:red;'>"+sheng+"</span>个字");
     }
    //alert(editors);
}

  </script>

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics