6

そこには非常に多くの解決策があることは知っていますが、正しい解決策を得ることができません。tinyMCE バージョン 3 でカスタマイズされたカウンターのコードを書きましたが、機能しmaxlengthない属性があります。カウンターが 0 に達したときにそれ以上のテキストを提供するのをやめたいと思ってsetcontent("")substring(0,maxcount)ます。また、私はそれを使用してみevt.preventDefault()ましたが、キーダウンとキープレスのために再びINを入力することはできませんが、バックスペースと削除も除外されましたが、正しく機能しませんでした。これが私のコードです。

    tinyMCE.init({
        mode: "textareas",
        theme: "advanced",
        editor_selector: "mceEditor",
        paste_auto_cleanup_on_paste: 'true',
        theme_advanced_disable: 'justifyleft,justifyright,justifyfull,justifycenter,indent,image,anchor,sub,sup,unlink,outdent,help,removeformat,link,fontselect,hr,styleselect,formatselect,charmap,separator,code,visualaid,strikethrough,fullscreen',
        theme_advanced_buttons1: 'bold,italic,underline,numlist,bullist,undo,redo,cleanup,spellchecker',
        theme_advanced_buttons2: "",
        theme_advanced_buttons3: "",
        plugins: 'spellchecker,fullscreen,paste',
        spellchecker_languages: '+English=en-us',
        spellchecker_rpc_url: '<%out.print(request.getContextPath());%>/jazzy-spellchecker',
        theme_advanced_statusbar_location: "bottom",
        theme_advanced_path : false,
        statusbar: true,
        setup: function(editor)
        {
             editor.onKeyUp.add(function(evt)
            {
                var maxLengthRichTextArea = 5;
                 var inputRichTextArea = $(editor.getBody()).text();
                 var inputRichTextAreaLength = inputRichTextArea.length;
                 var value = maxLengthRichTextArea-inputRichTextAreaLength;
                 if(value >= 0)
                 {  
                 $(tinyMCE.activeEditor.getContainer()).find("#"+editor.id+"_path_row").html("Remaining chars: "+(value));
                }           
                if(inputRichTextAreaLength > maxLengthRichTextArea) {
                 editor.setContent("");
                tinyMCE.activeEditor.selection.setContent(inputRichTextArea.substring(0, maxLengthRichTextArea));
                }                  
            });
        }
    });

</script>

HTML

<textarea id="450225" class="mceEditor"  maxlength="10" style="display: none;"></textarea>

これはうまくいっている

しかし、ここで 6 を追加すると、最後の桁の 5 がトリミングされます

この問題を解決する方法と最大数は、実際にはデータベースから得られるより高い数値です。

4

1 に答える 1

7

これは、あなたが達成しようとしていることの実例です:

HTML :

<textarea id="text"></textarea>

Javascript :

tinymce.init({
  selector: "textarea#text",
  height: 500,
  menubar: false,
  setup: function(editor) {
    var maxlength = 5;
    var allowedKeys = [8, 37, 38, 39, 40];
    editor.on("keydown", function(e) {
      var count = $(editor.getBody()).text().length;
      if(allowedKeys.indexOf(e.which) != -1) {
         return;
      }
      if (count >= maxlength) {
        e.stopPropagation();
        return false;
      }
    });
  }
});

そしてcodepen、それがあなたを助けることを願っています! 私のコードでは最大長は5ですが、 var で変更できますmaxlength

于 2019-05-13T00:37:56.290 に答える