WEB/JS

현재 URL 클립보드로 복사하기(라이브러리X)

나나나나나나나ㅏ나난ㄴ나ㅏ나나 2020. 6. 24. 17:58
728x90

현재 URL을 라이브러리없이 클립보드로 복사하구싶을때??

 

    function copyLink(){

        let currentUrl = window.document.location.href;

        let t = document.createElement("textarea");
        document.body.appendChild(t);
        t.value = currentUrl;
        t.select();
        document.execCommand('copy');
        document.body.removeChild(t);
		
        alart('복사가 완료되었습니다');

    }

 

728x90

'WEB > JS' 카테고리의 다른 글

페이스북 링크 공유하기  (0) 2020.06.25
게시글 카카오 링크로 공유해버리기  (0) 2020.06.24
checkbox 관련  (0) 2020.06.04
DATETIMEPICKER  (0) 2020.02.25
Javascript Cookie 사용하기  (0) 2020.02.17