从 MS Word 文档粘贴到 Web 表单
从 MS Word 文档复制到文本区域时,人们保留粗体强调和斜体等基本格式元素的最常见方法是什么。我注意到 Gmail 在这方面做得很好,而 StackOverflow 则不然。有通用的框架可以做到这一点吗?
What is the most common way people preserve basic formatting elements like bold emphasis and italics when copying to a textarea from an MS Word document. I noticed that Gmail does this well and StackOverflow does not. Are there common frameworks that do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最常用的富文本控件之一可能是 FCKEditor (现在,感谢上帝,命名为 CKEditor)。从 Word 粘贴时,它在保留格式方面做得非常出色。
Probably one of the most common rich text controls used is FCKEditor (now, thank God, named CKEditor). It does a really great job at preserving format when pasting from Word.
我们使用 FreeTextBox 作为 ASP.NET 中多行文本区域的替代品,此处输入的富文本在剪切和删除时保留其格式。粘贴到word中。
We use FreeTextBox as a replacement for multiline textarea's in ASP.NET, the rich text entered here retains its formatting when cut and pasted into word.