标签:microsoft tput weight 方法 bre 兼容性 out 16px span
类似于这种需求:今天分享一个在浏览器里点击复制到剪贴板的小方法,经测试所有浏览器都没有兼容性问题,包括安卓和iOS,拿走不谢!
现成的代码:
function copy() {
const input = document.createElement(‘input‘);
input.value = ‘想要复制的内容‘;
document.body.appendChild(input);
input.select();
if (document.execCommand(‘Copy‘)) {
document.execCommand(‘Copy‘);
console.log(‘复制成功!‘);
} else {
console.log(‘复制失败!‘);
}
input.style.display = ‘none‘;
}
标签:microsoft tput weight 方法 bre 兼容性 out 16px span
原文地址:https://www.cnblogs.com/lewiscutey/p/9260458.html