1
내 php 프로젝트에서 바코드를 만들 수있게되었으므로 자바 스크립트를 사용할 수 있도록 바코드를 인쇄하고 싶지만 현재는 이미지가 인쇄되지 않을 때 바코드를 인쇄하려고합니다. 내 바코드 이미지 링크는인쇄 자동 genarated 바코드 이미지
내가 이미지를 인쇄하기 위해 자바 스크립트를 사용하여 당신에게
PS
감사 중 하나가 나를 것은 이미지를 인쇄하는 데 도움이 될 수 있습니다이
http://localhost/Labortory_Management_System/assets/barcode/test_1D.php?text=3921214754
같다
<script type="text/javascript">
function PrintElem(elem)
{
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'my div', 'height=400,width=600');
mywindow.document.write('<html><head><title>my div</title>');
/*optional stylesheet*/ //mywindow.document.write('<link rel="stylesheet" href="main.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.print();
mywindow.close();
return true;
}
</script>
pls help