Clipboard API - Web API 接口参考 编辑
剪贴板 Clipboard API 提供了响应剪贴板命令(剪切、复制和粘贴)与异步读写系统剪贴板的能力。从权限 Permissions API 获取权限之后,才能访问剪贴板内容;如果用户没有授予权限,则不允许读取或更改剪贴板内容。
该 API 被设计用来取代使用 document.execCommand()
的剪贴板访问方式。
访问剪贴板
除了在实例化中创建一个 Clipboard
对象,你还可以使用全局的 Navigator.clipboard
来访问系统剪贴板。
navigator.clipboard.readText().then(
clipText => document.querySelector(".editor").innerText += clipText);
上述代码提取了剪贴板的文本并将其附在 class 为 editor
的第一个元素后面。因为当剪贴板中不是文本时, readText()
(and read()
, for that matter) 会返回一个空字符串,所以这段代码是安全的。
接口
Clipboard
Secure context- 提供了一个用于读写系统剪贴板上的文本和数据的接口。规范中被称为异步剪贴板 API(Async Clipboard API)。
ClipboardEvent
Secure context- 表示提供了有关剪贴板修改的信息的事件,也就是
cut
、copy
,和paste
。规范中被称为剪贴板事件 API(Clipboard Event API)。
规范
规范 | 状态 | 备注 |
---|---|---|
Clipboard API and events | Working Draft | 初步定义 |
浏览器兼容性
Clipboard
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.ClipboardEvent
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.参见
- 权限 API:Permissions API
- 使用权限 API
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论