<input type="text" id="text-box" size="20" value="Hello world!">
<button onclick="selectText()">Select text</button>
function selectText() {
const input = document.getElementById('text-box');
input.focus();
input.select();
document.execCommand("copy");
input.setSelectionRange(0 , 0);
}
위의 방법 외에 clipboard api가 따로 존재하지만, https에서만 작동한다.
'컴퓨터 > Javascript' 카테고리의 다른 글
Javascript toLocaleString() 3자리 마다 콤마 넣기 (0) | 2022.09.20 |
---|---|
window.print() 페이지 인쇄하기 (0) | 2022.09.20 |
Javascript 우클릭 방지, 블럭선택 방지, 드래그방지 (1) | 2022.07.29 |
Javascript Attribute 제어 (0) | 2022.06.29 |
Javascript URI encode decode (0) | 2022.06.27 |