Clipboard.write() - Web APIs 编辑
The Clipboard
method write()
writes arbitrary data, such as images, to the clipboard. This can be used to implement cut and copy functionality.
The "clipboard-write"
permission of the Permissions API, is granted automatically to pages when they are in the active tab.
Note: Browser support for the asynchronous clipboard APIs is still in the process of being implemented. Be sure to check the compatibility table as well as Clipboard availability in Clipboard for more information.
Syntax
var promise = navigator.clipboard.write(data)
Parameters
data
- An array of
ClipboardItem
objects containing data to be written to the clipboard.
Return value
A Promise
which is resolved when the data has been written to the clipboard. The promise is rejected if the clipboard is unable to complete the clipboard access.
Example
This example function replaces the current contents of the clipboard with a specified string.
function setClipboard(text) {
let data = [new ClipboardItem({ "text/plain": text })];
navigator.clipboard.write(data).then(function() {
/* success */
}, function() {
/* failure */
});
}
The code begins by creating a new ClipboardItem
object into which the text will be placed for sending to the clipboard. The key of the object passed to the ClipboardItem
constructor indicates the content type, the value indicates the content. The content could be a text or even a Blob (e.g. for copying images to the clipboard). Then write()
is called, specifying both a fulfillment function and an error function.
Example of copying canvas contents to the clipboard
function copyCanvasContentsToClipboard(canvas, onDone, onError) {
canvas.toBlob(function (blob) {
let data = [new ClipboardItem({ [blob.type]: blob })];
navigator.clipboard.write(data).then(function () {
onDone();
}, function (err) {
onError(err);
})
});
}
Note: You can only pass in one clipboard item at a time.
Specifications
Specification | Status | Comment |
---|---|---|
Clipboard API and events The definition of 'write()' in that specification. | Working Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论