프론트엔드/Vue
URL 복사 (링크 복사)
짱구를왜말려?
2023. 3. 26. 19:17
반응형
SMALL
# What?
현재 보고 있는 주소 복사
# How?
copy(){
var url = '';
var textarea = document.createElement("textarea");
document.body.appendChild(textarea);
url = window.document.location.href;
textarea.value = url;
textarea.select();
document.execCommand("copy");
document.body.removeChild(textarea);
alert("URL이 복사되었습니다.");
}
LIST