gpt4 book ai didi

javascript - 使用window.print时如何设置页面高度?

转载 作者:行者123 更新时间:2023-11-28 04:17:43 27 4
gpt4 key购买 nike

我想通过 pos 打印机打印一页,但现在打印的空白页太长。这是我的 js 代码。

<script>
$("#print").click( function (){
var div_height = document.getElementById("yu_jie_dan").clientHeight;
var printContents = document.getElementById("yu_jie_dan").innerHTML;
w = window.open("", 'name', 'resizable=1',false);
w.document.write("<body style='width: 230px;font-size: 30px;'>");
w.document.write(printContents);
w.document.write("</body>");
w.print();
w.close();
})
</script>

我想将页面宽度设置为230px高度自动

最佳答案

css中有一个伪类,只有当你尝试打印html页面时才会生效。

#page-id__or__div-id: print {
// Add style here that you want to see in printed documents
}

关于javascript - 使用window.print时如何设置页面高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45688937/

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