0
打印我生成條碼在我application.There一些問題,打印條碼,並導出PDF file.In這種情況下,條形碼不打印版或PDF file.I顯示有使用angularjs js通過指令生成barCod。如何使用條形碼JavaScript或出口條形碼在PDF
這裏是我的JavaScript
$scope._printBarCode = function (printSectionId) {
var innerContents = document.getElementById(printSectionId).innerHTML;
var popupWinindow = window.open();//'', '_blank');
popupWinindow.document.open();
popupWinindow.document.write('<html><head><link rel="stylesheet" type="text/css" href="Content/assets/css/barCode.css" /></head><body onload="window.print()">' + innerContents + '</html>');
popupWinindow.document.close();
}
,這裏是我的html
<input type="button" value="Prnt" ng-click="_printBarCode('barCodeId')" class="btn btn-primary" />
<div class="barcodeplace">
<div class="col-sm-12">
<div barcode-generator="{{_barCodeGeneraterId}}" style="height:20px;">
</div>
</div>
</div>
感謝您的寶貴時間。這個代碼運行不好,我有同樣的問題.barCode不打印。請問我可以在jsfiddle示例中顯示這個示例 – Sundar
https://plnkr.co/edit/ e0KZY0olmjM6PXZzTceQ?p =預覽 – jtsnr
謝謝你這麼多jtsnr – Sundar