我正在尝试使用 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>