1 效果图:点击打印,打开新页面
2 实现
2.1 导入pdf.js框架
2.2
function seal_print(c_regid) { // 打印(pdf.js)
var fileUrl = '<%=ctxPath %>/sealAction.do?method=downSeal&c_regid='+c_regid;
var url = '<%=ctxPath %>/js/pdf.js/web/viewer.html?file=' + encodeURIComponent(fileUrl);
window.open(url);
}