gpt4 book ai didi

tinymce - 如果 carret 在 tinyMCE 的段落开头,则防止退格

转载 作者:行者123 更新时间:2023-12-04 02:50:59 24 4
gpt4 key购买 nike

如果我的光标位置在第一段的开头,我需要防止退格。整件事是我想防止在编辑器中删除我的第一段。

最佳答案

你可以做(​​使用 Tinymce3)类似的事情

tinyMCE.init({
mode : "textareas",
...
setup : function(ed) {

ed.onKeyDown.add(function(ed, event) {

var range = ed.selection.getRng();

// case: first editor node is the node with the caret in it
if (range.startOffset == 0 && ed.getBody().getNode() == ed.getBody().firstChild)
{
event.preventDefault;
return false;

}
});
}
});

由于 TinyMCE 4x keydown、keypress 和 keyup 都成为 editor.on 的事件,因此可以通过以下方式获得相同的结果:
ed.on('keydown', function( args ) {

var range = ed.selection.getRng();

// First editor node is the node with the caret in it
if ( range.startOffset === 0 ) {
event.preventDefault();
return false;
}

});

关于tinymce - 如果 carret 在 tinyMCE 的段落开头,则防止退格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17744954/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com