easyui在打印当前页面时,如何隐藏掉底部的分页插件?

easyui在打印当前页面时,如何隐藏掉底部的分页插件?

img

img
如何隐藏掉这个下面的?

    <a href="javascript:void(0)" id="pass_btn"  onclick="print()" data-options="iconCls:'icon-doc-scan'" class="easyui-linkbutton" plain="true">打印当前页</a>


目前就一个打印按钮。分页是插件。。。。

<script src="js/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
function printHtml(html) {
var bodyHtml = document.body.innerHTML;
document.body.innerHTML = html;
window.print();
document.body.innerHTML = bodyHtml;
}
function onprint() {
var html = $("#printArea").html();
printHtml(html);
}
</script>
</head>
<body>
<div>
<div id="printArea" 
style="width: 500px; text-align: left;">
打印区域~~~~
</div>
<br />
<div>
<input type="button" id="btnPrint" 
onclick="onprint()" value="print" />
</div>
</div>

也可以使用jQuery打印指定区域