티스토리 뷰
728x90
반응형
코드 카피가 급 필요해서 예전에 썼었는데.....
다시 쓸 일이 있어서 코딩하려는데 생각이 안나는 ㅠㅠ
마흔이 넘으니 이젠 나의 메모리가 한계에 부딪치는....
삽질 후 정리해 본다.
HTML
<div class="code-info">
<button type="button" class="btn btn-default">btn btn-default</button>
<button type="button" class="btn btn-primary">btn-primary</button>
<button type="button" class="btn btn-success">btn-success</button>
<button type="button" class="btn btn-info"> btn-info</button>
<button type="button" class="btn btn-warning">btn-warning</button>
<button type="button" class="btn btn-danger">btn-danger</button>
<button type="button" class="btn btn-link">btn-link</button>
</div>
<div style="width:400px;margin-top:100px">
<textarea id="codeTextView" rows="10" style="width:100%"
placeholder="카피한 코드가 여기로 옮겨집니다."></textarea>
</div>
<button type="button" id="btnTagCopy">코드카피</button>
JS
let selectNodeCopy = targetEle => {
//선택영역이 있다면 제거하고 시작
if (window.getSelection) {
window.getSelection().removeAllRanges();
}
//textarea
let textAreaEle = document.getElementById("codeTextView");
//
//textarea value 값에 복사할 태그값을 대입
textAreaEle.value = targetEle.innerHTML;
//
//range 생성
let createRange = document.createRange();
//
//range에 Node 및 내용물을 포함 시킨다.
createRange.selectNode(targetEle);
//
//참고 - https://developer.mozilla.org/en-US/docs/Web/API/Selection/addRange
//window 선택영역에 추가
window.getSelection().addRange(createRange);
//클립보드에 현재 선택 영역의 내용을 복사.
document.execCommand("copy");
// alert("코드가 복사되었습니다.");
//코드 선택이 끝난후 엘리먼트 선택영역을 제거. ( 안해도 상관없지만 엘리먼트 퍼렇게 선택영역이 잡힐 것이다.)
window.getSelection().removeAllRanges();
};
//test
let btnTagCopy = document.getElementById("btnTagCopy");
btnTagCopy.addEventListener("click", function() {
selectNodeCopy(document.querySelector(".code-info"));
});
//
document.execCommand("copy") 함수가 핵심.
copy외에도 더많은 명령어가 있다.
아래 링크를 참고.
MDN - https://developer.mozilla.org/ko/docs/Web/API/Document/execCommand
728x90
반응형
'Programming language > javascript' 카테고리의 다른 글
for of 구문 (0) | 2022.06.22 |
---|---|
count rolling motion (0) | 2021.01.10 |
디스트럭쳐링이란 (0) | 2021.01.10 |
count motion ( 숫자 랜덤 카운트 ) (0) | 2021.01.10 |
RxJs (0) | 2021.01.10 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- anime.js
- React.StrictMode
- 앵귤러
- RefreshToken
- 반복문
- Vue3
- svg모션
- interceptors
- for of 구문
- 내장요소
- 자바스크립트
- IntrinsicElements
- react-router-dom
- git checkout -b
- Intrinsic
- 아이콘 폰트 만들기
- svg 폰트
- 리프래시토큰
- vue-router
- 코도바
- git
- cordova
- icon font
- CSS
- Angular
- svg icon font
- JsDoc
- 태그
- react
- Aptana
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함