function copyText(content){ if(content){ const input = document.createElement('input') document.body.appendChild(input) input.setAttribute('value',content) input.select() if (document.execCommand('copy')) { document.execCommand('copy') } document.body.removeChild(input) alert('已复制到剪贴板') } }
本文作者为gengboxb,转载请注明。