Barcode是一个小巧轻便的jQuery插件,能够生成8种类型的Barcode,并输出为CSS、BMP、SVG或Canvas。
1.在文档中添加最新的jQuery javascript库和jQuery条形码插件。
<script src="http://code.jquery.com/jquery-latest.min.js"></script> <script type="text/javascript" src="jquery-barcode.js"></script>
2.为条形码创建一个容器。
<div id="demo"></div>
3.生成条形码。
$("#demo").barcode( "1234567890128", // Value barcode (dependent on the type of barcode) "ean13" // type (string) );
4.类型
5.自定义生成条形码的默认设置。
barWidth: 1, barHeight: 50, moduleSize: 5, showHRI: true, addQuietZone: true, marginHRI: 5, bgColor: "#FFFFFF", color: "#000000", fontSize: 10, output: "css", posX: 0, posY: 0
2022-09-08
2022-01-08
2019-02-23