本文实例讲述了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程序设计有所帮助。
jQuery Barcode 是一个用来创建条形码的 jQuery 插件。 在线演示
本文向大家介绍jQuery插件简单实现方法,包括了jQuery插件简单实现方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jQuery插件简单实现方法。分享给大家供大家参考。具体如下: 使用方法如下: 希望本文所述对大家的jquery程序设计有所帮助。
本文向大家介绍简单实现的JQuery文本框水印插件,包括了简单实现的JQuery文本框水印插件的使用技巧和注意事项,需要的朋友参考一下 采用JQuery实现文本框的水印效果非常容易,效果如下: 代码片段,定义要应用水印效果的文本框的样式: .watermark { color: #cccccc; } 将JavaScript代码封装成JQuery的插件: 接下来直接在页面上使用: 以上就是本
本文向大家介绍jQuery+ajax实现实用的点赞插件代码,包括了jQuery+ajax实现实用的点赞插件代码的使用技巧和注意事项,需要的朋友参考一下 之前给大家总结了jQuery插件开发的两种方式,这里就实践一下,做一款点赞特效插件,先看看效果吧: 废话少说,上代码: 用法:在需要用到点赞插件的页面中引入jquery.js、以及这个插件.js,在$(function(){})中给"[ob
本文向大家介绍jquery插件corner实现圆角边框的方法,包括了jquery插件corner实现圆角边框的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了jquery插件corner实现圆角边框的方法。分享给大家供大家参考。具体如下: 这里测试了一下发现一个问题bug:若background-color:#eeeeee;写成background-color:red;或 backgr
本文向大家介绍jQuery Ajax 实现分页 kkpager插件实例代码,包括了jQuery Ajax 实现分页 kkpager插件实例代码的使用技巧和注意事项,需要的朋友参考一下 代码片段一: 代码片段二: 代码片段三: 下面这段代码:在原版上修改过,由于ajax分页不能及时更新总页数 下面是插件kkpager.js代码: 下面是插件kkpager_blue.css代码: 总结 以上所述是小编