gpt4 book ai didi

javascript - Meteor 中的 ExecCommand 不工作

转载 作者:行者123 更新时间:2023-11-29 21:53:01 25 4
gpt4 key购买 nike

我正在尝试在 Meteor 中实现 ContentEditable 的基本富文本编辑功能,但我遇到了 execCommand 问题。撤消和重做命令工作正常,但所有其他命令(如粗体和斜体)都不起作用并且没有给出任何错误。该代码作为常规页面也能正常工作(我已经为 Meteor 做了明显的改编,例如模板和事件)。

我的 html:

<body>
{{> buttons}}
<div id="editor" class="textZone" contenteditable="true"></div>
</body>

<template name="buttons">

<div id="rtfOptions">
<div class="separate">
<div class="rtfOption" id="undo">undo</div>
<div class="rtfOption" id="redo">redo</div>
</div>

<div class="separate">
<div class="rtfOption" id="bold">bold</div>
<div class="rtfOption" id="italic">italic</div>
</div>
</div>
</template>

我的事件(只有 2 个无效 + 有效的撤消。至于其余的几乎相同):

if (Meteor.isClient) {
Template.buttons.events({
"click #bold": function() { // Toggles bold on/off for the selection or at the insertion point
document.execCommand("bold", false, "null");
},
"click #italic": function() { // Toggles italics on/off for the selection or at the insertion point
document.execCommand("italic", false, "null");
},
"click #undo": function() { // Undoes the last executed command.
document.execCommand('undo', false, "null");
}
)};
}

有人知道这个问题吗?与文档或范围有关吗?

最佳答案

如果您将 div 标签改为 button(对于可点击的元素),或者使 div 文本不可选择(例如禁用 user-select 和 css)它应该可以如你所愿的工作。

原因是当你点击里面有文本的 div 时,execCommand 的目标是 div 的文本(不是contenteditable),因此该命令静默失败。尝试将 contenteditable="true" 添加到 div,您会发现如果单击它,它会将 div 的文本加粗。或者,尝试添加 css 规则 -webkit-user-select: none;(在 Chrome 上, vendor 前缀在其他浏览器上不同)以禁用 div 上的文本选择,您会看到 execCommand 工作得很好。

查看工作演示 here .

代码示例,为清楚起见:

选项 1

<template name="buttons">
<div id="rtfOptions">
<div class="separate">
<div class="rtfOption" id="bold" style="user-select: none; -webkit-user-select: none; -webkit-touch-callout: none;">bold</div>
</div>
</div>
</template>

选项 2

<template name="buttons">
<div id="rtfOptions">
<div class="separate">
<button class="rtfOption" id="bold">bold</button>
</div>
</div>
</template>

关于javascript - Meteor 中的 ExecCommand 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28050645/

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