인터넷정보

익스플로러에서 인쇄 누르면 페이지 이동 시키기

알 수 없는 사용자 2007. 10. 18. 13:27
<SCRIPT language=javascript>
<!--
var hideBuf;
function hideBeforePrint() {
  hideBuf = document.body.innerHTML;
  document.body.innerHTML = '';
}
function showAfterPrint() {
  top.frames.document.location.href='이동하고자 하는 페이지 입력';
}
window.onbeforeprint = hideBeforePrint;
window.onafterprint = showAfterPrint;
  //-->
</SCRIPT>
반응형