Html & Script

자바스크립트로 클립보드에 복사하기

컨텐츠 정보

본문

소스

function copyit(theField) {
var tempval=eval("document."+theField)
tempval.focus()
tempval.select()
therange=tempval.createTextRange()
therange.execCommand("Copy")
}

---------------------------------------------

function selectall(s){
    var doc = document.body.createTextRange();
    doc.moveToElementText(document.all(s));
    doc.select();
    doc.execCommand('copy');
    alert('소스가 저장되었습니다.\\n원하는곳에 붙여넣기를 하세요.');
}

관련자료

댓글 0
등록된 댓글이 없습니다.
Today's proverb
희망이란 본래 있다고도 할 수 없고 없다고도 할 수 없다. 그것은 마치 땅 위의 길과 같은 것이다. 본래 땅 위에는 길이 없었다. 걸어가는 사람이 많아지면 그것이 곧 길이 되는 것이다. (노신의 “고향“중에서)