본문 바로가기
자바스크립트

[Javascript] 텍스트 클립보드 복사하기 코드

by devebucks 2023. 2. 19.
728x90
// Get the text to be copied
const textToCopy = "Hello, world!";

// Create a temporary input element
const tempInput = document.createElement("input");
tempInput.setAttribute("type", "text");
tempInput.setAttribute("value", textToCopy);
document.body.appendChild(tempInput);

// Select the text
tempInput.select();

// Copy the text to the clipboard
document.execCommand("copy");

// Remove the temporary input element
document.body.removeChild(tempInput);
728x90

댓글