Limit the number of character in tinyMCE

后端 未结 16 1177
心在旅途
心在旅途 2020-11-29 07:44

Im using tinyMCe for my project.Everything is working fine but now i want to restrict the number of character that will be insert into tinyMce text

16条回答
  •  孤街浪徒
    2020-11-29 07:51

    Thariama's answers was awesome just implemented it and it was just what I was looking for, just made a few modifications:

        max_chars : "10",
        setup : function(ed) {
            ed.onKeyDown.add(function(ed, evt) {
                if ( $(ed.getBody()).text().length+1 > ed.getParam('max_chars')){
                    evt.preventDefault();
                    evt.stopPropagation();
                    return false;
                }
            });
        } 
    

    Thanks Thariama.

提交回复
热议问题