我有一个链接在我的网页打印网页。但是,在打印输出本身中也可以看到该链接。

是否有javascript或HTML代码,将隐藏链接按钮时,我点击打印链接?

例子:

 "Good Evening"
 Print (click Here To Print)

我想在打印文本“Good Evening”时隐藏这个“Print”标签。“打印”标签不应该显示在打印输出本身上。


当前回答

正如Elias Hasle所说,JavaScript可以重写!important。所以,我用一个理论实现扩展了他的答案。

这段代码用no-print类标识所有元素,在打印前用CSS隐藏它们,打印后恢复原始样式:

var noPrintElements = [];

window.addEventListener("beforeprint", function(event) {
   var hideMe = document.getElementsByClassName("no-print");
   noPrintElements = [];
   Array.prototype.forEach.call(hideMe, function(item, index) {
      noPrintElements.push({"element": item, "display": item.style.display });
      item.style.display = 'none'; // hide the element
   });   
});

window.addEventListener("afterprint", function(event) {
   Array.prototype.forEach.call(noPrintElements, function(item, index) {
      item.element.style.display = item.display; // restore the element
   });      
   noPrintElements = []; // just to be on the safe side
});

其他回答

您可以将链接放在一个div中,然后在单击时在锚标记上使用JavaScript来隐藏div。示例(未测试,可能需要调整,但你知道的):

<div id="printOption">
    <a href="javascript:void();" 
       onclick="document.getElementById('printOption').style.visibility = 'hidden'; 
       document.print(); 
       return true;">
       Print
    </a>
</div>

缺点是,一旦点击,按钮就会消失,页面上也就失去了该选项(尽管总是有Ctrl+P)。

更好的解决方案是创建一个打印样式表,并在该样式表中指定printOption ID(或其他名称)的隐藏状态。您可以在HTML的头部部分执行此操作,并使用media属性指定第二个样式表。

@media print { .no-print { 可见性:隐藏; } } < div class = " no-print”> 不 < / div > < div > 是的 < / div >

最佳实践是使用专门用于打印的样式表,并将其媒体属性设置为print。

在其中,显示/隐藏你想打印在纸上的元素。

<link rel="stylesheet" type="text/css" href="print.css" media="print" />

在样式表中添加:

@media print
{    
    .no-print, .no-print *
    {
        display: none !important;
    }
}

然后在你不想在打印版本中出现的HTML中添加class='no-print'(或将no-print类添加到现有的类语句中),比如你的按钮。

如果Javascript干扰了单个元素的style属性,从而重写了!important,我建议在打印前和打印后处理事件。https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeprint