自定义系统打印方法
在实际项目上 也会遇到不适用润乾的打印方法 而是自定义打印功能的需求。
实现起来也很简单 只需要在 toolbar.jsp 上添加如下代码即可:
<li><a class="ICOhover" href="#" onClick="my_print()"><span title="打印" class="print"></span></a></li>
<script type="text/javascript">
function my_print(){
windows.print();
}
</script>