barcode实现条码打印的方法

这是一个纯js的jQuery插件,项目地址:

使用示例:

<!doctype html> <html> <head> <title>jQuery Barcode</title> <script type="text/javascript" src="https://www.jb51.net/jquery-1.4.4.min.js"></script> <script type="text/javascript" src="https://www.jb51.net/jquery-barcode.js"></script> <style type="text/css"> .barcodeImg{margin:10px 0px} </style> </head> <body> <div> <input value="11225921991"></input><br/> <input type="button" value="code11"> <input type="button" value="code39"> <input type="button" value="code93"> <input type="button" value="code128"> <input type="button" value="ean8"> <input type="button" value="ean13"> <input type="button" value="std25"> <input type="button" value="int25"> <input type="button" value="msi"> <input type="button" value="datamatrix"> <div></div> </div> <script type="text/javascript"> function code11(){ $("#bcTarget").empty().barcode($("#src").val(), "code11",{barWidth:2, barHeight:30,showHRI:false}); } function code39(){ $("#bcTarget").empty().barcode($("#src").val(), "code39",{barWidth:2, barHeight:30,showHRI:false}); } function code93(){ $("#bcTarget").empty().barcode($("#src").val(), "code93",{barWidth:2, barHeight:30,showHRI:false}); } function code128(){ $("#bcTarget").empty().barcode($("#src").val(), "code128",{barWidth:1, barHeight:30,showHRI:false}); } function ean8(){ $("#bcTarget").empty().barcode($("#src").val(), "ean8",{barWidth:2, barHeight:30,showHRI:false}); } function ean13(){ $("#bcTarget").empty().barcode($("#src").val(), "ean13",{barWidth:2, barHeight:30,showHRI:false}); } function std25(){ $("#bcTarget").empty().barcode($("#src").val(), "std25",{barWidth:2, barHeight:30,showHRI:false}); } function int25(){ $("#bcTarget").empty().barcode($("#src").val(), "int25",{barWidth:2, barHeight:30,showHRI:false}); } function msi(){ $("#bcTarget").empty().barcode($("#src").val(), "msi",{barWidth:2, barHeight:30,showHRI:false}); } function datamatrix(){ $("#bcTarget").empty().barcode($("#src").val(), "datamatrix",{barWidth:2, barHeight:30,showHRI:false}); } </script> </body> </html>

运行效果截图如下:

barcode实现条码打印的方法

完整实例代码代码点击此处本站下载

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgzdzd.html