我正在尝试限制summernote中允许的单词数量。
例如,我想限制最多50个单词。
你有什么想法吗?
$(document).ready(function() {
$('#summernote').summernote({
height: 20,
});
});
答案 0 :(得分:2)
以为我会为这篇文章做出贡献,因为这有助于我达到我想要的解决方案。似乎建议的答案尚未被接受。
我为maxLength创建了一个变量,以下是我配置summernote回调的方法。请注意我使用的summernote版本的编辑区域为.note-editable。下面的解决方案是打字稿,我有一个目标范围,显示剩余的字符数。
callbacks: {
onKeydown(e) {
// The text method will ignore HTML tags and preserve non-breaking
// space allowing for a true character count
let content: string = $('.note-editable').text();
// This checks if the character is alphanumeric (i.e. not a backspace or return key)
let isCharacter: boolean = (/[a-zA-Z0-9-_ ]/.test(String.fromCharCode(e.keyCode)));
// If the current content length is at max, preventDefault will disallow
// any more characters
if (isCharacter) {
if (content.length >= maxLength) {
e.preventDefault();
}
}
},
onKeyup(e) {
// After the result of checking the character and max length exceeded,
// take the resulting count and determine and display characters remaining
let content: string = $('.note-editable').text();
let charactersRemaining: number = maxLength - content.length;
$('#SomeDivId span').text(charactersRemaining);
}
答案 1 :(得分:0)
var maxwords = 100;
$(".summernote").summernote({
height: '200px',
callbacks: {
onKeydown: function (e) {
var t = e.currentTarget.innerText;
var words = t.split(" ");
if (words.length >= maxwords) {
//delete key
if (e.keyCode != 8)
e.preventDefault();
// add other keys ...
}
},
onKeyup: function(e) {
var t = e.currentTarget.innerText;
var words = t.split(" ");
if (words.length >= maxwords) {
//delete key
if (e.keyCode != 8)
e.preventDefault();
// add other keys ...
}
},
onPaste: function(e) {
var t = e.currentTarget.innerText;
var bufferText = ((e.originalEvent || e).clipboardData ||
window.clipboardData).getData('Text');
e.preventDefault();
var all = t + bufferText;
var words = all.split(" ");
var array = words.slice(0, maxwords)
document.execCommand('insertText', false, array.join(" "));
}
}
});
答案 2 :(得分:-1)
字数与字符: 我建议您决定字符的数量而不是单词,因为即使对于用户来说这也是容易和一致的。
Summernote创建contenteditable div
,如下所示:
有了这些知识并使用以下答案,您可以实现一个可以限制字符数的解决方案: Limiting Number of Characters in a ContentEditable div