JS 将字符串复制到剪贴板
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 将字符串复制到剪贴板相关的知识,希望对你有一定的参考价值。
const el = document.createElement(‘textarea‘); el.value = str; el.setAttribute(‘readonly‘, ‘‘); el.style.position = ‘absolute‘; el.style.left = ‘-9999px‘; document.body.appendChild(el); const selected = document.getSelection().rangeCount > 0 ? document.getSelection().getRangeAt(0) : false; el.select(); document.execCommand(‘copy‘); document.body.removeChild(el); if (selected) { document.getSelection().removeAllRanges(); document.getSelection().addRange(selected); } }; // 事例 copyToClipboard(‘Lorem ipsum‘); // ‘Lorem ipsum‘ copied to clipboard
以上是关于JS 将字符串复制到剪贴板的主要内容,如果未能解决你的问题,请参考以下文章