我正在使用 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>
但主要问题是无法在打印预览中呈现所有条码图像。任何人都可以解决这个问题。请帮助我。