gpt4 book ai didi

javascript - 如何在 Ckeditor 的光标位置放置一个 html 元素?

转载 作者:搜寻专家 更新时间:2023-11-01 04:42:08 24 4
gpt4 key购买 nike

我很难成功地在我的 Ckeditor 中放置我正在拖放的 html 元素。到目前为止,我已经能够使用“setData”将它放在我的内容的最后。但是我想把它放在我光标所在的位置。

我的意思是,与其这样做:

<p>My content with <span>spans</span>, <a>links</a>, etc.</p><span>The html I am drag/droping</span>

我想这样做:

<p>My content with <span>spans</span>, <span>The html I am drag/droping</span>, <a>links</a>, etc.</p>

现在,我的代码看起来像这样:

CKEDITOR.instances['myContent'].insertHtml(' <span>The html I am drag/droping</span>');
  • 我试过 insertText 但它从来没有奏效。
  • 然后我尝试了 insertHtml,但它只在 IE 中有效。

你知道如何解决它吗?那将是一个很大的帮助!谢谢。

最佳答案

使用 Ckeditor“粘贴”(放置)事件/方法而不是原生的。

在你的插件 editor.on('instanceReady'...假设 CKEditor 4.x

粘贴和放下由同一个事件“粘贴”处理。 Ckeditor 将 dataValue 的内容放在编辑器中的光标位置。

editor.on('paste', function(e){
// get data from e.data.dataTransfer or wherever ...
e.data.dataValue = ' <span>The html I am drag/droping</span>';
});

关于javascript - 如何在 Ckeditor 的光标位置放置一个 html 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16832262/

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