导语
前端实现复制文字操作
编辑
核心代码
copyTitle(certB64) { let oInput = document.createElement('input'); oInput.value = certB64; document.body.appendChild(oInput); oInput.select(); // 选择对象 var successful = document.execCommand('Copy'); // 执行 copy 操作 if (successful) { message.success('复制成功!'); } else { message.warning('复制失败,请手动复制!'); } oInput.remove(); }