从PHP设置热敏打印机尺寸打印

时间:2018-11-24 21:42:54

标签: javascript php html5 css3

我正在尝试通过onclick打印功能将php / HTML代码打印为最大宽度为7厘米的热敏打印尺寸。

但是它给了我A4尺寸的打印件。

后来我尝试使用Google搜索,并将此功能应用为:

<script type="text/javascript">

        function CallPrint(printMe) {
            var prtContent = document.getElementById(printMe);
            var WinPrint = window.open('', '', 'left=0,top=0,width=600,height=400,toolbar=1,scrollbars=1,status=0');
            WinPrint.document.write('<html><head><title></title></head>');
            WinPrint.document.write('<body style="font-family:verdana; font-size:14px;width:300px;height:200px:" >');
            WinPrint.document.write(prtContent.innerHTML);
            WinPrint.document.write('</body></html>');
            WinPrint.document.close();
            WinPrint.focus();
            WinPrint.print();
            WinPrint.close();
            prtContent.innerHTML = "";
        }

    </script>
</head>

但是这会调整A4纸中可打印内容的大小。这不能解决我的问题。

所以,我在这里寻求帮助以“使用onclick功能在热敏打印机中打印div内容”

感谢您的帮助。

0 个答案:

没有答案