書籍のバーコードと isbn を印刷するドキュメントがあります。問題は、1 ページに 1 列しか印刷されないことです。ページごとに 2 列または 3 列 (ページがその数の列をサポートする場合) を印刷したいと考えています。本のタイトルでバーコードを生成するために JavaScript を使用しています。コードは次のとおりです。
for (x=0;x<data.isbn.length;x++)
{
if (x == 5){
'<div class="page-break"></div>';
} else
first += '$("#'+indexGlobal+'").barcode("'+isbn[x]+'", "codabar",{barHeight:40, fontSize:30, output:"bmp"});';
second += '<div class="wrapper"><div id="'+indexGlobal+'"></div><div class="fullSKU">      '+isbn[x]+
'</div><br/><div class="title">'+title[x]+'</div></div>   ';
indexGlobal++;
}
}
});//end of ajax call
var barcode = window.open('','BarcodeWindow','width=400');
var html = '<html><head><title>Barcode</title><style type="text/css">'+
'.page-break{display:block; page-break-before:always; }'+
'body{width: 2in;}'+
'.wrapper{height: 1in;margin-left:10px;margin-top:5px;margin-right:5px;}'+
'.fullSKU{float: left;}'+
'.shortSKU{float: right;font-size:25px;font-weight:bold;}'+
'.title{float: left;}'+
'</style><script type="text/javascript"src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.js"></script><script type="text/javascript" src="../barcode/jquery-barcode.js"></script><script>$(document).ready(function() {'+first+'window.print();window.close();});</script></head><body>'+second+'</body></html>';
barcode.document.open();
barcode.document.write(html);
barcode.document.close();
これを複数の列に印刷するための提案はありますか?