そこには非常に多くの解決策があることは知っていますが、正しい解決策を得ることができません。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 がトリミングされます
この問題を解決する方法と最大数は、実際にはデータベースから得られるより高い数値です。