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
'자바스크립트' 카테고리의 다른 글
[Javascript] 두 배열 간에 교집합 구하기 (0) | 2023.02.19 |
---|---|
[Javascript] map 자료구조 변수를 깊은 복사하는 법 (0) | 2023.01.14 |
[Javascript] Object.entries가 뭐니? (0) | 2023.01.14 |
[Javascript] 문자 날짜 정렬하기 (0) | 2023.01.09 |
정규식 예시 모음 (2) | 2022.12.15 |
댓글