728x90
function copyEv(){
let text = $(".copyText").text() + "\r\n" + $(".copyTextBr").text(); // 복사할 내용
let t = document.createElement("textarea");
var agent = navigator.userAgent.toLowerCase();
if(agent.indexOf("msie") != -1 || agent.indexOf('trident') != -1){ // IE일 때
document.body.appendChild(t);
t.value = text;
window.getSelection().selectAllChildren(t);
}else{ // chrome일 때
t.textContent = text;
document.body.appendChild(t);
t.select();
}
document.execCommand("copy");
document.body.removeChild(t);
}
728x90
'JavaScript' 카테고리의 다른 글
[JavaScript] 리스트에서 ''으로 묶인 값 제거해서 동적 property 사용하는 방법 - EVAL() 사용 피하기, 대괄호 표기법 (0) | 2022.01.23 |
---|
댓글