gpt4 book ai didi

javascript - 打印完 div 内容后停止打印

转载 作者:行者123 更新时间:2023-11-28 10:19:05 25 4
gpt4 key购买 nike

我想在 div 内容打印完成后停止打印。问题是,如果内容很少,页面的其余部分就会出现空白。我想在内容打印完成后剪切页面。我正在使用收据打印机。

 function Popup(data) 
{
var mywindow = window.open('', 'day', 'height=300,width=400');
mywindow.height
mywindow.document.write('<html><head><title>my div</title>');
mywindow.document.write('<link rel="stylesheet" href="style.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');

mywindow.print();


return true;
}

最佳答案

您可以定义 css 以在元素后创建分页符。

@media print
{
.some_element {page-break-after:always;}
}

请参阅此处引用 http://www.w3schools.com/cssref/pr_print_pageba.asp

关于javascript - 打印完 div 内容后停止打印,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24106301/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com