0

我必须在 window.open() 的新窗口中更改字体,因为我想在收据打印机中打印。我已经更改了 True Type Font Subtitution 但它不起作用。那么如何为新打开的窗口添加 css 呢?这是我的代码:

<img src="barcode.png" id="barcode">


<script type="text/javascript">
function printImg() {

    ImageLink=document.getElementById("barcode").src;
    pwin=window.open('','','width=0,height=0');
    pwin.document.write("<center><h>My Store<h><br>Ekiosk</center><br>Date : <?php echo date('Y/m/d'); ?><br>Time : <?php echo date('H:i:s'); ?><br>Customer Name: <?php echo $cust['firstname']; ?> <?php echo $cust['lastname']; ?> <br>Total : <?php echo $cust['total']; ?><br><center><img src='" + ImageLink + "'/><br>Thanks For Shopping !</center>");
    pwin.print();
    pwin.close();    

}
</script>

谁能帮我把字体改成字体收据?

4

1 回答 1

0

添加 CSS 文件

<link href="your.css" ... />

就像你用你的pwin.document.write句子做的那样

您还应该在 document.write 中编写完整的有效 html 代码,包括 html、title、head 和 body 标签,并将链接放在 head 标签内,就像您在任何其他页面中所做的那样。

于 2013-07-22T08:13:54.030 回答