반응형
clickHandler() {
const el = document.createElement(`textarea`);
el.value = "Junmannn";
el.setAttribute(`readonly`, ``);
document.body.appendChild(el);
el.select();
document.execCommand(`copy`);
document.body.removeChild(el);
alert('Copied coupon code ! : ' + el.value);
}
See the Pen Untitled by Junmannn (@Junmannn) on CodePen.
가끔 보면 버튼 하나로 링크 복사하기 혹은 어떠한 글자를 복사하기 등을 볼 수 있을 것이다. 정말 어렵게만 생각했는데, 코드를 알고나니 정말 별것 없다.
반응형
'Font-End' 카테고리의 다른 글
모든 국가 정보 가져오는 프로그램 (0) | 2022.04.16 |
---|---|
html 로만 핸드폰번호 입력받기 (숫자만 입력받기) (0) | 2022.04.06 |
스크롤 감지, 맨 위로 기 버튼 정말 간단하게 구현 (0) | 2022.02.21 |
Angular 앵귤러 <mat-select> 안에 체크박스 다중선택 (0) | 2021.12.10 |
Angular Timestamp 정리 .toDate() 오류 (0) | 2021.11.03 |