使用 navigator.clipboard.writeText 轻松将任何文本复制到剪贴板。
const copyToClipboard = (text) => navigator.clipboard.writeText(text); copyToClipboard("需要的文本");