如何在 JavaScript 中复制到剪贴板并使其成为 HTML?
我在这里找到了一些关于如何将 JavaScript 中的文本复制到剪贴板的不错的解决方案: 在 JavaScript 中复制到剪贴板?
如何 给它一个类型的方法?我想要的是将类似内容粘贴到剪贴板:
这是 < b>粗体< /b>
当将其粘贴到 OpenOffice 或 Word 中时,显示
此内容为粗体
I found some nice solutions here on how to copy text in JavaScript to the clipboard in:
How do I copy to the clipboard in JavaScript?
But is there any way to give it a type? Want I want is to paste to clipboard something like:
this is < b >bold< /b >
and when pasting it into OpenOffice or Word, get
this is bold
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在将用户选择的字符串发送到剪贴板之前对其进行操作。请参阅此问题的答案它显示了如何在复制字符串之前完成字符串操作到剪贴板。
You could just manipulate the string the user selects before sending it to the clipboard. Refer the answer for this question which shows how a string manipulation could be done before copying it to the clipboard.