我想强制用户在tinyMCE编辑器中每行键入50个字符时换行。在这里我写了设置代码。但它不起作用。有谁告诉我错误/或更正是什么?
tinymce.init({
selector: 'textarea#submitterms',
width: 670,
plugins: "filemanager",
setup: function(ed){
ed.on('KeyDown',function(ed, evt) {
chars_without_html = $.trim(tinyMCE.activeEditor.getContent().replace(/(<([^>]+)>)/ig,"")).length;
if(chars_without_html>15){
ed.content = ed.content.replace(/<br\s*\/>/gi, "<br />");
ed.stopPropagation();
ed.preventDefault();
}
});
}
});