单击工具栏上的newpage按钮后的ckeditor调用函数

发布于 2024-08-21 09:09:52 字数 37 浏览 5 评论 0原文

单击工具栏上的newpage按钮后的ckeditor调用函数

Ckeditor call function after newpage button on the toolbar is clicked

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

離人涙 2024-08-28 09:09:52

使用“afterCommandExec”和“beforeCommandExec”:

editor.on('afterCommandExec', handleAfterCommandExec);
function handleAfterCommandExec(event)
{
    var commandName = event.data.name;
    alert(commandName);
}

Use 'afterCommandExec' and 'beforeCommandExec':

editor.on('afterCommandExec', handleAfterCommandExec);
function handleAfterCommandExec(event)
{
    var commandName = event.data.name;
    alert(commandName);
}
为人所爱 2024-08-28 09:09:52

我找到了如何捕获粘贴事件:

editor.on('paste', your_cb_fn);

但这似乎不适用于按钮操作:

// does nothing
editor.on('Bold', your_cb_fn);
editor.on('bold', your_cb_fn);

解决方案可能是编辑 _source/plugins 中的插件来创建触发器,尽管这并不理想。

I found out how to catch the paste event:

editor.on('paste', your_cb_fn);

However this doesn't seem to work for the button actions:

// does nothing
editor.on('Bold', your_cb_fn);
editor.on('bold', your_cb_fn);

The solution may be to edit the plugins in _source/plugins to create triggers, though that is not ideal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文