粘贴到 Web 表单时如何保留 Word 文档格式?
将 Word .doc 或 .rtf 字母粘贴到 Web 表单(例如文本区域)时,大部分文档格式(如粗体或居中)都会丢失。有什么办法可以在不丢失格式的情况下做到这一点吗?
When pasting a Word .doc or .rtf letter into a web form e.g into a textarea most of the document formatting (like bold or centering) is lost. Is there any way to do so without losing the formatting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您使用纯文本区域就不会:textarea 元素仅用于携带未格式化的文本。
如果您需要格式化文本,您可以尝试提供此类的 JavaScript 框架。
AFAIK,Dojo 有一个可以包含格式化文本的编辑器小部件。
Not as long as you're using plain text areas: the textarea element is intended to carry only unformatted text.
If you need formatted text, you could try a javascript framework providing such.
AFAIK, Dojo has an editor widget that could contain formatted text.