时间:2021-05-26
本文实例讲述了jQuery插件jquery-barcode实现条码打印的方法。分享给大家供大家参考,具体如下:
这是一个纯js的jQuery插件,项目地址:http://barcode-coder.com/en/barcode-jquery-plugin-201.html
使用示例:
<!doctype html><html> <head> <title>jQuery Barcode</title> <script type="text/javascript" src="jquery-1.4.4.min.js"></script> <script type="text/javascript" src="jquery-barcode.js"></script> <style type="text/css"> .barcodeImg{margin:10px 0px} </style> </head> <body> <div style="margin:10px"> <input id="src" value="11225921991"></input><br/> <input type="button" onclick='code11()' value="code11"> <input type="button" onclick='code39()' value="code39"> <input type="button" onclick='code93()' value="code93"> <input type="button" onclick='code128()' value="code128"> <input type="button" onclick='ean8()' value="ean8"> <input type="button" onclick='ean13()' value="ean13"> <input type="button" onclick='ean13()' value="std25"> <input type="button" onclick='int25()' value="int25"> <input type="button" onclick='msi()' value="msi"> <input type="button" onclick='datamatrix()' value="datamatrix"> <div id="bcTarget" class="barcodeImg"></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>运行效果截图如下:
完整实例代码代码点击此处本站下载。
希望本文所述对大家jQuery程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
wed的打印方法具我自己懂得知道的有:1、JQuery插件Jqprint实现2、JQery打印插件PrintArea实现网页打印3、CSS控制网页打印样式JQu
web的打印方法具我自己懂得知道的有:1、JQuery插件Jqprint实现2、JQery打印插件PrintArea实现网页打印3、CSS控制网页打印样式JQu
有很多朋友都用过jquery插件,但是很少有人自己动手写过jQuery插件,本文就以实例形式简单叙述了jQuery插件的实现方法。分享给大家供大家参考之用。具体
jQuery插件类型:1.jQuery方法:大部分jQuery插件都是这种类型的插件,由于这种插件是将对象方法封装起来,在jQuery选择器获取jQuery对象
本文实例为大家分享了jquery插件实现轮播图的具体代码,供大家参考,具体内容如下轮播图的实现(jquery插件)需要引入jquery插件,去jquery官网搜