粘贴浏览器内容到粘贴板

粘贴浏览器内容到粘贴板

/**
 * 粘贴内容到粘贴板
 * @param {string} str 内容
 */
export function copyTextToClipBoard (str = '') {
  if (document.execCommand) {
        let tempInput = document.createElement('input');
        tempInput.setAttribute('style','height:0,width:0,visibility: hidden;');
        tempInput.setAttribute('value', str);
        document.body.appendChild(tempInput);
        tempInput.select();
        // 复制
        document.execCommand('copy');
            notification.success({
            message:'复制成功'
        })
        // 销毁无用元素
        document.body.removeChild(tempInput);
    } else {
        notification.warn({
            message:'该浏览器不支持复制'
        })
    }
}

你可能感兴趣的:(粘贴浏览器内容到粘贴板)