gpt4 book ai didi

javascript - 从 CKEditor 4.1 开始,如果没有工具栏插件,execCommand 将无法工作

转载 作者:行者123 更新时间:2023-12-02 17:53:55 24 4
gpt4 key购买 nike

最初我在没有工具栏的情况下进行了内联测试: 4.0 [W],4.1 [新],4.2 [新],4.3 [N](W = 有效;N = 无效)。

With toolbar @ 4.3, inline :有效。

Without toolbar, standard : 不工作。

基本上,自 4.1 版本以来发生了一些影响外部按钮的更改。这会导致这样的事情......

<a href="#bold" data-command="bold">Bold</a>

$('[data-command]').on({
click : function(e)
{
var command = $(this).data('command');

command = editor.execCommand(command);

e.preventDefault();
}
});

..不工作。

我已经成功调试,按钮状态似乎始终处于“非事件”状态。我确实尝试了 getCommand().enable().exec() 组合,但是没有任何变化。

我目前已经通过使用 sharedspace 插件并将工具栏 移动到隐藏元素中解决了该问题。

4.3 这样做的方法是什么?

最佳答案

您应该阅读Advanced Content Filter guide从 CKEditor 4.1 开始,内容、命令和 UI 就被捆绑在一起了。

CKEDITOR.replace( editable , {
removePlugins: 'toolbar',
// This is what got to be added
extraAllowedContent: 'strong em u'
});

Fiddle

关于javascript - 从 CKEditor 4.1 开始,如果没有工具栏插件,execCommand 将无法工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21131630/

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