富文本编辑 - designMode 与 contentEditable
创建跨浏览器富文本编辑器时。您会使用哪一个?为什么?
请记住,粘贴必须具有弹性,能够抵抗多种来源(记事本、Word、其他网站),并且不应依赖于任何 Javascript 库。
When creating a cross-browser rich text editor. Which would you use and why?
Keep in mind that pasting has to be resilient to stand against multiple sources (notepad, word, other websites) and it should not be dependent on any Javascript libraries.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想要内容可编辑。 designMode 适用于文档,contentEditable 适用于特定元素及其子元素。
http://blog.whatwg.org/the-road-to-html -5-内容可编辑
You probably want contentEditable. designMode applies to the document, contentEditable to a specific element and its children.
http://blog.whatwg.org/the-road-to-html-5-contenteditable