jquery-barcode实现10种不同类型的条形码效果代码
代码语言:html
所属分类:其他
代码描述:jquery-barcode实现10种不同类型的条形码效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!doctype html> <html> <head> <title></title> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery.1.11.min.js"></script> <script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-barcode.js"></script> <style type="text/css"> .barcodeImg{margin:10px 0px} </style> </head> <body> <div style="margin:10px"> <input id="src" value="123456789" /><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().........完整代码请登录后点击上方下载按钮下载查看
网友评论0