我正在嘗試使用HTML打印頁面的頁腳。但是,我需要頁腳才能在第二頁上啓動。每個文檔的生成頁數都不相同。到目前爲止,它要麼出現在每一頁中,要麼出現在頁面的末尾。如何從第二個打印頁面開始打印網頁頁腳?
的JavaScript:
if (lineNo > 35) {
content += "<div id='print-footer' width=100%>";
content += "<table cellspacing=0 cellpadding=0 width=100% border=0>";
content += "<tr><td style='font-family: Times New Roman; font-size:12px;'>Ref No.: " + tranId + "</td></tr>";
content += "</table>";
content += "</div>";
}
HTML:
<style type="text/css" media="print">
div#print-footer {
position: fixed;
right: 14px;
bottom: 0;
background-color: white
}
</style>
請發佈與問題相關的代碼。理想情況下,**除了問題主體本身的代碼之外,還請添加[jsFiddle.net/api/post/jquery/1.7.1/]您問題的示例。它會幫助我們幫助你。 –
已更新帖子 – user1033038
頁腳仍然出現在所有頁面上。我現在生成的文檔共有4頁 – user1033038