반응형
<script type="text/javascript">
function printIt(printThis)
{
var win = null;
win = window.open();
self.focus();
win.document.open();
win.document.write(printThis);
win.document.close();
win.print();
win.close();
}
</script>
<input type="button" value="Print" onclick="javascript:printIt(document.getElementById('printme').innerHTML)" />
<div id="printme">
Test Text div(printme) 영역안의 내용만 프린트화 시킨다.
function printIt(printThis)
{
var win = null;
win = window.open();
self.focus();
win.document.open();
win.document.write(printThis);
win.document.close();
win.print();
win.close();
}
</script>
<input type="button" value="Print" onclick="javascript:printIt(document.getElementById('printme').innerHTML)" />
<div id="printme">
Test Text div(printme) 영역안의 내용만 프린트화 시킨다.
</div>
반응형
'Programing > javascript' 카테고리의 다른 글
jquery 자식창에서 부모창으로 값 전달. (0) | 2011.02.08 |
---|---|
jquery 핸들링 1 [Table 핸들링][펌] (0) | 2010.08.30 |
jquery input의 value 값 알아오기 (1) | 2010.04.12 |
문자열 잘라서 배열에 넣기 (0) | 2010.03.31 |
javascript opener 오류 "엑세스가 거부 되었습니다." (2) | 2010.03.26 |
iframe height 자동 리사이징 (1) | 2010.01.22 |
간단한 ajax + php (5) | 2010.01.04 |
javascript onload (0) | 2009.12.10 |