无法修改不可变项但可以删除它们。是否有可能阻止这种情况?
如果选择了不可变项,则可以将其删除,或者如果光标位于单词后面并且用户点击ENTER,则消失。
https://jsfiddle.net/hrg6n2wh/
$("#keditor").kendoEditor({
//handles: "se"
resizable: { content: true, min:100},
tools: [],
value: '<p contenteditable="false" style="color:blue; font-size: large">Section1</p><p></p>' +
'<p contenteditable="false" style="color:blue; font-size: large">Section2</p><p></p>' +
'<p contenteditable="false" style="color:blue; font-size: large">Section3</p><p></p>' +
'<p contenteditable="false" style="color:blue; font-size: large">Section4</p><p></p>' +
'<p contenteditable="false" style="color:blue; font-size: large">Section5</p><p></p>',
immutables:true
});
ENTER也不会注入回车和&#34;打开&#34;输入文本的空间;相反,它可以将插入位置发送回文档的顶部。
这取决于插入插入符号的确切位置。如果用户小心地将插入指针放在不可变项之间,则可以输入文本。
可以调整这种行为吗?