gpt4 book ai didi

javascript - 在 Ckeditor 实例中通过 htmlbutton 插件插入文本之前重新定位插入符

转载 作者:行者123 更新时间:2023-12-03 05:55:12 26 4
gpt4 key购买 nike

我使用 CKeditor 的 htmlbuttons 插件的目标是在文本框内容的最开头插入 html 代码,无论插入符号的位置如何。我改编了下面所示的脚本(在此处找到),但它不起作用,所以我需要知道可能出了什么问题。

CKEDITOR.plugins.add( 'htmlbuttons',
{ init : function( editor )

{ for (name in CKEDITOR.instances) {
var instance = CKEDITOR.instances[name]; }

上面我得到了 id(与名称相同) - 已验证

function setSelectionRange(input, selectionStart, selectionEnd) {
if (input.setSelectionRange) {
input.focus();
input.setSelectionRange(selectionStart, selectionEnd);
}
else if (input.createTextRange) {
var range = input.createTextRange();
range.collapse(true);
range.moveEnd('character', selectionEnd);
range.moveStart('character', selectionStart);
range.select();
}
}

function setCaretToPos (input, pos) {
setSelectionRange(input, pos, pos);
}

上面是我在这里找到的用于重新定位插入符号(光标)的脚本。

var buttonsConfig = editor.config.htmlbuttons;
if (!buttonsConfig)
return;

function createCommand( definition )
{
return {
exec: function( editor ) {

instanceId = (instance.name);

setCaretToPos(document.getElementById(instanceId),0);

上面的行应该将插入符号定位在 ckeditor 文本框的开头,但它不起作用。

editor.insertHtml( definition.html );
}
};
}

// Create the command for each button
for(var i=0; i<buttonsConfig.length; i++)
{
var button = buttonsConfig[ i ];
var commandName = button.name;
editor.addCommand( commandName, createCommand(button, editor) );

editor.ui.addButton( commandName,
{
label : button.title,
command : commandName,
icon : this.path + button.icon
});
}
} //Init

} );

最佳答案

我找到了答案 - 将“SetCaretToPos...”行替换为以下代码:

editor.focus();
var selection = editor.getSelection();
var range = selection.getRanges()[0];
var pCon = range.startContainer.getAscendant('p',true);
var newRange = new CKEDITOR.dom.range(range.document);
newRange.moveToPosition(pCon, CKEDITOR.POSITION_BEFORE_START);
newRange.select();

就是这样。它在最开始插入代码 - 忽略光标位置。

关于javascript - 在 Ckeditor 实例中通过 htmlbutton 插件插入文本之前重新定位插入符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39961949/

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