JS复制文本到剪切板

2018-11-09 02:36:25来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

// 是否支持复制
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;
}

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:第2章 this 、 call 和 apply

下一篇:原型