카테고리 없음2014. 1. 24. 09:01

버튼클릭시전체선택소스.htm



<script>
<!--
var copytoclip=1
function HighlightAll(theField) {

var tempval=eval("document."+theField)

tempval.focus()

tempval.select()

if (document.all&&copytoclip==1){

therange=tempval.createTextRange()

therange.execCommand("Copy")

window.status="문장을 선택하셨나요? 복사해가세요!"

setTimeout("window.status=''",1800)

}

}

//-->
</script>

<form name="test">
<a href="deny_javascript:HighlightAll('test.select1')">소스 선택</a><br>
<textarea name="select1" rows=8 cols=70 >http://bankcgi.co.kr</textarea>
</form>


Posted by 갓리버리