document.execCommand('copy')
可以在Promise的resolve函数中使用。
每个现代浏览器(如Chrome,Opera甚至Safari)都允许异步复制最多1秒钟。
我希望在剪贴板中进行计算后改善用户体验并复制数据。
是否有解决方案只需点击一下即可使用Firefox复制Promise的结果?
这是一个使用Chrome的代码段
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Test</title>
</head>
<body>
<button onclick="copy(genPwd)">copy</button>
<script>
function genPwd() {
return new Promise(function(resolve) {
resolve('toto')
})
}
function copy(p) {
p().then(function(result) {
console.log('create fake text area');
var fakeTextArea = document.createElement('textarea');
fakeTextArea.setAttribute('readonly', '');
fakeTextArea.value = result;
document.body.appendChild(fakeTextArea);
fakeTextArea.select();
document.execCommand('copy');
});
}
</script>
</body>
</html>
&#13;