KindEditor 4入力ボックス限定文字数

2041 ワード

jquery 1.6.4
 
htmlコード:




KindEditor 4         




//KindEditor
 $(function() {
  var editor = KindEditor.create('textarea[name="content1"]',{
   resizeType : 0,  // 2            ,1       ,0     。
   themeType : 'simple',  //      ,   ”default”、”simple”    simple     simple.css
   height  : '500px',
   readonlyMode : false, //        false
   allowFileManager : true,  //           
   afterChange : function() {
      $('.word_count1').html(this.count()); //      HTML  
      $('.word_count2').html(this.count('text'));  //         、IMG、EMBED,      ,IMG EMBED     
      //////////
      //    
      var limitNum = 100;  //      
      var pattern = '     ' + limitNum + ' ';
      $('.word_surplus').html(pattern); //    
      if(this.count('text') > limitNum) {
       pattern = ('      ,         ');
       //          
       var strValue = editor.text();
       strValue = strValue.substring(0,limitNum);
       editor.text(strValue);      
       } else {
       //      
       var result = limitNum - this.count('text');
       pattern = '     ' +  result + ' ';
       }
       $('.word_surplus').html(pattern); //    
      ////////
     } 
   });
   
 });  






 

HYZX





0 。( HTML 。)
0 。( 、IMG、EMBED, ,IMG EMBED 。)