如何在 JavaScript 中复制到剪贴板并使其成为 HTML?

发布于 2024-10-18 10:10:27 字数 316 浏览 6 评论 0原文

我在这里找到了一些关于如何将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷夜 2024-10-25 10:10:27

您可以在将用户选择的字符串发送到剪贴板之前对其进行操作。请参阅此问题的答案它显示了如何在复制字符串之前完成字符串操作到剪贴板

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文