0

書籍のバーコードと 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">&nbsp &nbsp &nbsp '+isbn[x]+
                '</div><br/><div class="title">'+title[x]+'</div></div>&nbsp &nbsp';
        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();

これを複数の列に印刷するための提案はありますか?

4

1 に答える 1

1

私の友人は私を正しい方向に向けました。体幅を変えました

'body{width: 2in;}'+

ページのサイズ(横向きで印刷されるため10インチ)にし、3列のcss3プロパティを使用します。

'body{width: 10in;-moz-column-count:3; -webkit-column-count:3;column-count:3;}'

これが他の誰かを助けることを願っています。

于 2012-07-05T12:12:28.697 に答える