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원하는곳에 붙여넣기를 하세요.');
}

관련자료

등록된 댓글이 없습니다.
Today's proverb
진정한 기쁨은 나의 아집을 버려 갈 때마다 느껴오는 타인의 대한 배려의식에서 오는 이해이다. 이로써 서로에 대한 존경과 용서가 함께하게 되는 것이다.