-
URL 복사 (링크 복사)프론트엔드/Vue 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'프론트엔드 > Vue' 카테고리의 다른 글
vue nuxt에서 카카오 kakao api 사용하는법 #nuxt #kakao #카카오 (0) 2024.03.12 checkbox 또는 radio 활성 css 안먹힐때 #label #checkbox #radio #체크박스 #라디오 (0) 2023.12.15 파일 객체 emit할 때 주의점 #File #Object #Emit #$emit (0) 2023.02.08 시군구 select 만들기 #지역 #셀렉트 #시도별 #시군구 #region #InputRegion (0) 2023.02.01 내용 뿌릴 때 html 태그 없애는법 #description #내용 #html제거 (0) 2022.11.29