1。直接在页面上显示三次:)2。在页面上显示一次,其余两个用DIV来保存,在打印的时候display:block
打印完了就 display:none3。用打印控件

解决方案 »

  1.   

    <script>
    function printthree()
    {newcontent="";
    content=document.all.myprint.innerHTML;
    newcontent=content+"<br>"+content+"<br>"+content;
    document.all.myprint.innerHTML=newcontent;
    print();
    document.all.myprint.innerHTML=content;
    }
    </script>
    <div id=myprint>
    information
    </div>
    <input type=button onclick=printthree()>