拷贝文本
作者:
clmll | 来源:发表于
2019-12-24 10:14 被阅读0次export const copyText = (str = "") => {
let textArea = document.createElement("textarea");
//解决火狐复制会滚动
textArea.style.cssText = "opacity:0;position:fixed";
textArea.value = str;
document.body.appendChild(textArea);
textArea.select();
if (document.execCommand('copy')){
document.execCommand('copy');
//message.info("复制成功");
} else {
//message.warning("该浏览器不支持点击复制到剪贴板");
}
document.body.removeChild(textArea);
};
本文标题:拷贝文本
本文链接:https://www.haomeiwen.com/subject/pyuxoctx.html
网友评论