JS复制文本到剪切板
程序员文章站
2023-11-13 19:05:16
// 是否支持复制 export const isSupportCopy = ((!!document.queryCommandSupported) && document.queryCommandSupported('copy')); const copyTempElement = documen ......
// 是否支持复制
export const issupportcopy = ((!!document.querycommandsupported) && document.querycommandsupported('copy'));
const copytempelement = document.createelement('textarea');
copytempelement.setattribute('style', 'margin:0;padding:0;width:0;height:0;position:absolute;');
document.body.appendchild(copytempelement);
// 复制文本到剪切板
export function copytext(text) {
let succeeded;
try {
copytempelement.value = text;
copytempelement.select();
succeeded = document.execcommand('copy');
} catch (err) {
succeeded = false;
}
return succeeded;
}
上一篇: PHP中iconv函数转码时截断字符问题的解决方法
下一篇: Python全栈Day 9部分知识点