我想使用像
这样的javascript打印一个窗口 function printWindow() {
window.print();
}
但它使用 url 进行打印,并在顶部和底部打印日期时间。喜欢 。 firefox中有一个选项可以不显示File => Page Setup上的标题和网址 。如果我从浏览器中选择空白,则不会显示网址和标题。但我想从我的代码中做到这一点,即使是在javascript或vb.net中。有些正在告诉我们使用
<style type="text/css" media="print">
@page
{
size: auto; /* auto is the initial value */
margin: 0mm; /* this affects the margin in the printer settings */
}
但它仍然显示网址。我怎样才能做到这一点。谢谢
答案 0 :(得分:0)
这是特定于浏览器的。你不能使用javascript或css修改它。隐藏此网址链接的唯一方法是更改浏览器设置。