需要用到web连接打印机,打印客户信息及订单信息,总结了一下web通过jquery连接打印机的方法,有需要的可以看看。
一.html代码如下:

<button class="btn btn-primary js-ajax-submit" onclick="preview(1);" type="button">打印</button>

二.js代码如下:

<script type="text/javascript">
function preview(oper)
{
if (oper < 10)
{
bdhtml=window.document.getElementById("print_content").innerHTML;//获取当前页的html代码
sprnstr="<!--startprint"+oper+"-->";//设置打印开始区域
eprnstr="<!--endprint"+oper+"-->";//设置打印结束区域
prnhtml=bdhtml.substring(bdhtml.indexOf(sprnstr)+18); //从开始代码向后取html
prnhtml=prnhtml.substring(0,prnhtml.indexOf(eprnstr));//从结束代码向前取html
window.document.body.innerHTML=prnhtml;
window.print();
window.document.body.innerHTML=bdhtml;
} else {
window.print();
}
}
</script>

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注