- 增加一个隐藏input标签
<input id="foo" value="aaabbbccc" style="opacity: 0;position: absolute;" type="text" readonly/>
readonly可以避免Android端键盘唤醒
- JS代码
let input = document.getElementById("foo");
input.select();
document.execCommand("copy");
Done.
<input id="foo" value="aaabbbccc" style="opacity: 0;position: absolute;" type="text" readonly/>
readonly可以避免Android端键盘唤醒
let input = document.getElementById("foo");
input.select();
document.execCommand("copy");
Done.