33 lines
922 B
HTML
33 lines
922 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<link rel="stylesheet" href="/pb/css/reset.css">
|
|
<link rel="stylesheet" href="/pb/css/common.css">
|
|
<link rel="stylesheet" href="/pb/css/content.css">
|
|
<link rel="stylesheet" href="/pb/css/popup.css">
|
|
<script src="/js/jquery.js"></script>
|
|
<head>
|
|
<script>
|
|
$(document).ready(function(e){
|
|
var print_area = opener.$('.contWrap').clone();
|
|
document.body.innerHTML = print_area.html();
|
|
if($('.listSerch').length > 0 ){
|
|
$('.listSerch').remove();
|
|
}
|
|
if($('.rightWrap').length > 0 ){
|
|
$('.rightWrap').remove();
|
|
}
|
|
if($('.btnWrap').length > 0 ){
|
|
$('.btnWrap').remove();
|
|
}
|
|
|
|
$(".pageCont").css({"background":"url('/img/waterMark.png')","webkit-print-color-adjust":"exact"}); //워터마크
|
|
window.print();
|
|
setTimeout(function(){
|
|
//self.close();
|
|
},1000);
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |