标签:
具体思路就在js文件里封装一个函数 将datagri列表里的内容 写入到一个新打开的窗口中 以表格的形式写入 然后在设置字体样式
进行打印 ,在新窗口中打开可以作为预览功能。由于需要数据库获取 所以采取这一种方式:
js文件内容如下
var tableString="<html><head><link rel=‘stylesheet‘ type=‘text/css‘ href=‘css/table_print.css‘/></head><body><table cellspacing=‘0‘ id=‘PrintBody‘ border=‘1‘ >";
}
网页中直接可以调用//打印报表 章柄交接统计表
function startPrint(){
CreateFormPage("gac",$("table_id"));
}
<a href="#" class="easyui-linkbutton" plain="true" data-options="iconCls:‘icon-print‘" onclick="startPrint()">打印</a>
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/gaoanchen/article/details/47294139