如何打印窗口而不在标题上显示URL

时间:2014-03-05 11:02:49

标签: javascript css vb.net printing-web-page

我想使用像

这样的javascript打印一个窗口
        function printWindow() {
        window.print();         
    }

但它使用 url 进行打印,并在顶部和底部打印日期时间。喜欢 the image。 firefox中有一个选项可以不显示File => Page Setup上的标题和网址 enter image description here。如果我从浏览器中选择空白,则不会显示网址和标题。但我想从我的代码中做到这一点,即使是在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 */
}

但它仍然显示网址。我怎样才能做到这一点。谢谢

1 个答案:

答案 0 :(得分:0)

这是特定于浏览器的。你不能使用javascript或css修改它。隐藏此网址链接的唯一方法是更改​​浏览器设置。