一、JS 实现方式
实现代码:
代码语言:javascript复制<input type="text" ref="inputText" />
<button>一键复制</button>
代码语言:javascript复制const copyButton = document.getElementsByTagName("button")[0];
const inputText = document.getElementsByTagName("input")[0];
copyButton.addEventListener("click", () => {
inputText.select();
document.execCommand("copy");
});
二、Vue3 实现方式
实现代码:
代码语言:javascript复制<input type="text" ref="inputText"/>
<button @mousedown="clickCopy">一键复制</button>
代码语言:javascript复制const inputText = ref({} as unknown);
const clickCopy = () => {
(inputCode.value as HTMLInputElement).select();
document.execCommand("copy");
};