Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我无法在 Safari 上的 React-Quill 编辑器上粘贴文本(仅限),而我可以使用快捷键 COPY、CUT、REDO 和 UNDO 文本。
尝试-webkit-user-select: text设置.ql-clipboard div元素
-webkit-user-select: text
.ql-clipboard
div
.ql-clipboard { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }
我的错误是我user-select: none;在父 div 中使用
user-select: none;