如何使用 jQuery 将文本复制到客户端剪贴板?
工作流程很简单:
- 您在文本区域内单击。
- 文本被复制到客户端的剪贴板。
- 向用户显示通知。
你怎么做?
The workflow is simple:
- You click inside a textarea.
- The text is copied to the client's clipboard.
- Display notice to the user.
How do you do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就浏览器兼容性而言,在 Javascript 中复制到剪贴板是一项棘手的任务。最好的方法是使用小型闪光灯。它适用于所有浏览器。您可以在这篇文章中查看。
以下是针对 Internet Explorer 的操作方法:
Copying to the clipboard is a tricky task to do in Javascript in terms of browser compatibility. The best way to do it is using a small flash. It will work on every browser. You can check it in this article.
Here's how to do it for Internet Explorer: