我可以在富文本编辑器(打开设计模式的 iframe)中执行自定义命令吗?

发布于 2024-08-23 09:55:49 字数 186 浏览 4 评论 0原文

请参阅

是否可以为 execCommands 函数创建自定义命令(以及如何创建)?

我需要用于自定义标记的自定义命令。

See this.

Is it possible to create custom commands (and how) for the function execCommands?

I need custom commands for custom markup.

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

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

发布评论

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

评论(1

各自安好 2024-08-30 09:55:49

我不相信你可以覆盖 execCommand。您是否可以做一个条件检查来选择相应地运行 execCommand 还是自定义处理程序?

即:

if(markup is custom){
    /* Execute custom command... */
} else {
    /* Execute custom handler... */
}

这可能只是在教祖母吸鸡蛋......

作为提示,您可能会通过更深入的示例来获得您想要实现的目标的更准确的答案。

I do not believe that you can override execCommand. Could you perceivably do a conditional check which chooses whether to run execCommand or a custom handler accordingly?

ie:

if(markup is custom){
    /* Execute custom command... */
} else {
    /* Execute custom handler... */
}

This may just be teaching grandmothers to suck eggs...

As a tip, you may get more accurate answers with more in-depth examples of what you want to achieve.

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