본문 바로가기
자바스크립트

자바스크립트 복사

by 뇽꾸리 2020. 9. 2.
반응형
/* copy */
function copyCode(code){
  var t = document.createElement("textarea");
  document.body.appendChild(t);
  t.value = code;
  t.select();
  document.execCommand('copy'); //카피 명령어
  document.body.removeChild(t);
}

 

반응형

댓글