問一個網頁列印問題
像下面這種方式
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
</style>
<style type="text/css">
@media print {
thead { display: table-header-group; }
tfoot { display: table-footer-group; }
}
@media screen {
thead { display: block; }
tfoot { display: block; }
}
</style>
</head>
<body>
<table>
<thead>
<tr><th>我是抬頭 <BR> 頁碼: 1/1 </th></tr>
</thead>
<tfoot>
<tr><td>我是尾巴</td></tr>
</tfoot>
<tr>
<td><div>內容<br />內容<br />內容<br />內容<br /></div>
<BR>好幾行內容</td>
</tr>
</tbody>
</table>
</body>
當內容多達好幾頁時
它可以每列印到一頁最下面換頁後
『抬頭』再印一次
可是像頁碼要怎計算呢??
如何事先就知道總共有幾頁可以先輸出總頁數??
讓每一頁1/5
2/5...3/5..4/5..5/5 來顯示?
當然我知道在瀏覽器的設定裡面有這選項
但這太制式格式的不知道能不能寫程式輸出
[ROACH 在 2014-6-6 04:56 PM 作了最後編輯]