最佳答案
为什么 navigator.clipboard
总是出现在下面的代码片段中?
var clipboard = navigator.clipboard;
if (clipboard == undefined) {
console.log('clipboard is undefined');
} else {
clipboard.writeText('stuff to write').then(function() {
console.log('Copied to clipboard successfully!');
}, function() {
console.error('Unable to write to clipboard. :-(');
});
}
更多关于剪贴板 API 的信息可以在 给你中找到。
Chrome 版本: 68.0.3440.106。
我相信这在某种程度上起作用了,但现在不再起作用了。这是令人困惑的,因为 这张桌子表明剪贴板 API 是在 Chrome 中实现的(已经实现了一段时间) ,但是特定 API 方法的 这张桌子表明没有一个 API 方法是受支持的?