我正在使用 componentDidMount() {
const cards = this.state.shares.map((share) => {
return this.props.cards.find(card =>
card.id === share.card_id);
}
this.setState({ cards });
}
和contenteditable = true
为用户键入的文本设置样式。
用户使用填充颜色,斜体和粗体字体等设置文本块的样式。就像我们在MS Word中所做的那样,他需要一个“复制格式”按钮来复制文本块中的所有样式,然后继续处理其他文本阻止,突出显示和粘贴相同的样式。
据我了解,document.execCommand
中没有可以使用的功能。您知道如何执行此操作吗?