如何利用 JavaScript 设置元素后面的分页行为?
在 JavaScript 中使用 pageBreakAfter 属性来设置元素后面的分页行为。使用 always 属性指定元素后面的分页行为。
注 − 这些更改在打印或打印预览中才会可见。
示例
您可以尝试运行以下代码,通过 JavaScript 来返回元素后面的分页行为 −
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p>This is demo text.</p> <p>This is demo text.</p> <p id = "myFooter">This if footer text.</p> <button type = "button" onclick="display()">Set page-break</button> <script> function display() { document.getElementById("myFooter").style.pageBreakAfter = "always"; } </script> </body> </html>
广告