0

我正在使用 Jqprint 插件来打印 porpose

条码打印代码为

html代码为:

<div class="wrapper_template" id="print_template">
   <div class="imageOutput" >
 // Code for Printing barcode for different Products  
   </div>
</div>

Javascript代码为:

<script language="javascript" type="text/javascript">
$(document).ready(function() {
                $(".print_link").click( function() {
                    $('#print_template').jqprint({ operaSupport: true });
                    return false;
                });
             });
</script>

但主要问题是无法在打印预览中呈现所有条码图像。任何人都可以解决这个问题。请帮助我。

4

1 回答 1

0

我通过更改核心文件解决了上述问题

opt.printContainer = true;

opt.printContainer = false;
于 2015-02-03T11:25:54.737 回答