그누보드 [G4] 헤드와 테일없이 본문내용만 출력방법
페이지 정보
본문
간편하게 게시판 본문에서 헤드와 테일없이 프린트출력하는방법와 본문전환 방법입니다.
view.skin.php에 넣어줍니다.
<script type="text/javascript">
<!--
var initBody
function beforePrint(){
initBody = document.body.innerHTML;
document.body.innerHTML = idPrint.innerHTML;
}
function afterPrint(){
document.body.innerHTML = initBody;
}
function printArea() {
window.print();
}
window.onbeforeprint = beforePrint;
window.onafterprint = afterPrint; function printArea1(){
if (flag == false){
initBody = document.body.innerHTML;
document.body.innerHTML = idPrint1.innerHTML;
flag = true;
} else {
document.body.innerHTML = initBody;
flag = false;
}
}
//-->
</script>
프린트할 부분을 아래처럼 감싸줍니다.
<div id="idPrint"><!-- 프린트출력 -->
내용
</div><!-- 프린트 출력
<input type=button border=0 align=absmiddle value="출력하기" onclick="printArea();">
관련자료
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=21517
view.skin.php에 넣어줍니다.
<script type="text/javascript">
<!--
var initBody
function beforePrint(){
initBody = document.body.innerHTML;
document.body.innerHTML = idPrint.innerHTML;
}
function afterPrint(){
document.body.innerHTML = initBody;
}
function printArea() {
window.print();
}
window.onbeforeprint = beforePrint;
window.onafterprint = afterPrint; function printArea1(){
if (flag == false){
initBody = document.body.innerHTML;
document.body.innerHTML = idPrint1.innerHTML;
flag = true;
} else {
document.body.innerHTML = initBody;
flag = false;
}
}
//-->
</script>
프린트할 부분을 아래처럼 감싸줍니다.
<div id="idPrint"><!-- 프린트출력 -->
내용
</div><!-- 프린트 출력
<input type=button border=0 align=absmiddle value="출력하기" onclick="printArea();">
관련자료
http://sir.co.kr/bbs/board.php?bo_table=g4_tiptech&wr_id=21517
댓글목록
등록된 댓글이 없습니다.