57

我正在使用 Bootstrap 开发一个站点,该站点有 28 个模式窗口,其中包含有关不同产品的信息。我希望能够在打开的模式窗口中打印信息。每个窗口都有一个id.

<!-- firecell panel & radio hub -->
           <div class="modal hide fade" id="fcpanelhub">
              <div class="modal-header">
                <button type="button" class="close" data-dismiss="modal">X</button>
                <h3>5000 Control Panel & Radio Hub</h3>
              </div>
              <div class="modal-body">
                <img src="../site/img/firecell/firecell-panel-info-1.png" alt=""/><hr/>
                <img src="../site/img/firecell/firecell-panel-info-2.png" alt=""/><hr/>
                <img src="../site/img/firecell/firecell-radio-hub-info-1.png" alt=""/><hr/>
                <img src="../site/img/firecell/firecell-radio-hub-info-2.png" alt=""/>
              </div>
              <div class="modal-footer">
                <a href="#" class="btn" data-dismiss="modal">Close</a>
              </div>    
           </div>

因此,如果我在“打印”中添加一个新按钮modal-footer,并且单击它,我希望打印该模式。我说会使用javascript是对的吗?如果是这样,我如何告诉 javascript 只打印打开的模式,而不是其他模式?

所有帮助表示赞赏。

4

11 回答 11

78

另一种解决方案

这是基于Bennett McElwee对下面提到的同一问题的回答的新解决方案。

使用 IE 9 & 10、Opera 12.01、Google Chrome 22 和 Firefox 15.0 测试。
jsFiddle 示例

1.) 将此 CSS 添加到您的网站:

@media screen {
  #printSection {
      display: none;
  }
}

@media print {
  body * {
    visibility:hidden;
  }
  #printSection, #printSection * {
    visibility:visible;
  }
  #printSection {
    position:absolute;
    left:0;
    top:0;
  }
}

2.) 添加我的 JavaScript 函数

function printElement(elem, append, delimiter) {
    var domClone = elem.cloneNode(true);

    var $printSection = document.getElementById("printSection");

    if (!$printSection) {
        $printSection = document.createElement("div");
        $printSection.id = "printSection";
        document.body.appendChild($printSection);
    }

    if (append !== true) {
        $printSection.innerHTML = "";
    }

    else if (append === true) {
        if (typeof (delimiter) === "string") {
            $printSection.innerHTML += delimiter;
        }
        else if (typeof (delimiter) === "object") {
            $printSection.appendChild(delimiter);
        }
    }

    $printSection.appendChild(domClone);
}​

您已准备好在您的网站上打印任何元素!
只需调用printElement()您的元素并window.print()在完成后执行。

注意: 如果您想在打印之前修改内容(并且仅在打印版本中),请查看此示例(由评论中的 waspina 提供):http: //jsfiddle.net/95ezN/121/

也可以使用 CSS 来显示打印版本中的附加内容(并且仅在那里)。


以前的解决方案

我认为,您必须通过 CSS 隐藏网站的所有其他部分。

最好将所有不可打印的内容移动到单独的DIV

<body>
  <div class="non-printable">
    <!-- ... -->
  </div>

  <div class="printable">
    <!-- Modal dialog comes here -->
  </div>
</body>

然后在你的 CSS 中:

.printable { display: none; }

@media print
{
    .non-printable { display: none; }
    .printable { display: block; }
}

感谢Greg,他已经回答了一个类似的问题:仅打印 <div id="printarea"></div>?

使用 JavaScript有一个问题:用户看不到预览 - 至少在 Internet Explorer 中!

于 2012-08-29T15:51:12.730 回答
9

这是一个使用 JQuery 扩展的选项,我根据接受答案的评论中的 waspinator 代码制作:

jQuery.fn.extend({
    printElem: function() {
        var cloned = this.clone();
        var printSection = $('#printSection');
        if (printSection.length == 0) {
            printSection = $('<div id="printSection"></div>')
            $('body').append(printSection);
        }
        printSection.append(cloned);
        var toggleBody = $('body *:visible');
        toggleBody.hide();
        $('#printSection, #printSection *').show();
        window.print();
        printSection.remove();
        toggleBody.show();
    }
});

$(document).ready(function(){
    $(document).on('click', '#btnPrint', function(){
        $('.printMe').printElem();
    });
});

JSFiddle:http: //jsfiddle.net/95ezN/1227/

如果您不想将其应用于每一个打印件,而只是在您的自定义打印按钮上执行此操作(这是我的情况),这将很有用。

于 2016-10-10T10:27:51.833 回答
8

我建议你试试这个 jQuery 插件打印元素

它可以让您只打印您选择的元素。

于 2012-08-29T15:50:54.233 回答
8

使用当前接受的解决方案,您无法再打印包含对话框本身的页面。这是一个更加动态的解决方案:

JavaScript:

$().ready(function () {
    $('.modal.printable').on('shown.bs.modal', function () {
        $('.modal-dialog', this).addClass('focused');
        $('body').addClass('modalprinter');

        if ($(this).hasClass('autoprint')) {
            window.print();
        }
    }).on('hidden.bs.modal', function () {
        $('.modal-dialog', this).removeClass('focused');
        $('body').removeClass('modalprinter');
    });
});

CSS:

@media print {
    body.modalprinter * {
        visibility: hidden;
    }

    body.modalprinter .modal-dialog.focused {
        position: absolute;
        padding: 0;
        margin: 0;
        left: 0;
        top: 0;
    }

    body.modalprinter .modal-dialog.focused .modal-content {
        border-width: 0;
    }

    body.modalprinter .modal-dialog.focused .modal-content .modal-header .modal-title,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body * {
        visibility: visible;
    }

    body.modalprinter .modal-dialog.focused .modal-content .modal-header,
    body.modalprinter .modal-dialog.focused .modal-content .modal-body {
        padding: 0;
    }

    body.modalprinter .modal-dialog.focused .modal-content .modal-header .modal-title {
        margin-bottom: 20px;
    }
}

例子:

<div class="modal fade printable autoprint">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
        <h4 class="modal-title">Modal title</h4>
      </div>
      <div class="modal-body">
        <p>One fine body&hellip;</p>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary" onclick="window.print();">Print</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->
于 2014-05-23T11:11:45.887 回答
6

这是一个修改后的解决方案,也适用于使用 Grails 模板呈现的模态窗口,您可以在同一正文中多次调用相同的模态模板(使用不同的值)。这个线程对我帮助很大,所以我想我会分享它,以防其他 Grails 用户在这里找到他们的方式。

对于那些好奇的人,接受的解决方案对我不起作用,因为我正在渲染表格;每行都有一个按钮,可以打开一个模式窗口,其中包含有关记录的更多详细信息。这导致多个 printSection div 被创建并打印在彼此之上。因此,我不得不在打印完成后修改 js 以清理 div。

CSS

我将此 CSS 直接添加到我的模态 gsp 中,但将其添加到父级具有相同的效果。

<style type="text/css">
   @media screen {
        #printSection {
           display: none;
        }
   }

   @media print {
        body > *:not(#printSection) {
           display: none;
        }
        #printSection, #printSection * {
            visibility: visible;
        }
        #printSection {
            position:absolute;
            left:0;
            top:0;
        }
   }
</style>

将它添加到站点范围的 CSS 会终止站点其他部分的打印功能。我从ComFreak接受的答案(基于Bennett McElwee 答案)中得到了这个,但它是使用 fanfavorite 对 Print <div id=printarea></div> 的答案中的 ':not' 功能进行修改. 我选择了“显示”而不是“可见性”,因为我不可见的正文内容正在创建额外的空白页面,这对我的用户来说是不可接受的。

js

这是我的javascript,从ComFreak对这个问题的接受答案修改而来。

function printDiv(div) {    
    // Create and insert new print section
    var elem = document.getElementById(div);
    var domClone = elem.cloneNode(true);
    var $printSection = document.createElement("div");
    $printSection.id = "printSection";
    $printSection.appendChild(domClone);
    document.body.insertBefore($printSection, document.body.firstChild);

    window.print(); 

    // Clean up print section for future use
    var oldElem = document.getElementById("printSection");
    if (oldElem != null) { oldElem.parentNode.removeChild(oldElem); } 
                          //oldElem.remove() not supported by IE

    return true;
}

我不需要附加元素,因此我删除了该方面并将函数更改为专门打印一个 div。

HTML (gsp)

和模态模板。这将打印模态页眉和正文,并排除按钮所在的页脚。

<div class="modal-content">
    <div id="print-me"> <!-- This is the div that is cloned and printed -->
        <div class="modal-header">
            <!-- HEADER CONTENT -->
        </div>
        <div class="modal-body">
             <!-- BODY CONTENT -->
        </div>
    </div>
    <div class="modal-footer">
                                 <!-- This is where I specify the div to print -->
        <button type="button" class="btn btn-default" onclick="printDiv('print-me')">Print</button>
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
    </div>
</div>

我希望对某人有所帮助!

于 2015-06-16T21:20:08.497 回答
4

我只是使用了一点 jQuery/javascript:

html:

<h1>Don't Print</h1>

<a data-target="#myModal" role="button" class="btn" data-toggle="modal">Launch modal</a>

<div class="modal fade hide" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"      aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
     <h3 id="myModalLabel">Modal to print</h3>
  </div>
  <div class="modal-body">
    <p>Print Me</p>
  </div>
  <div class="modal-footer">
    <button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
    <button class="btn btn-primary" id="printButton">Print</button>
  </div>
</div>

js:

$('#printButton').on('click', function () {
    if ($('.modal').is(':visible')) {
        var modalId = $(event.target).closest('.modal').attr('id');
        $('body').css('visibility', 'hidden');
        $("#" + modalId).css('visibility', 'visible');
        $('#' + modalId).removeClass('modal');
        window.print();
        $('body').css('visibility', 'visible');
        $('#' + modalId).addClass('modal');
    } else {
        window.print();
    }
});

这是小提琴

于 2014-11-04T20:15:24.117 回答
1

这是一个没有 Javascript 或插件的解决方案 - 只是一些 css 和标记中的一个额外类。此解决方案使用 BootStrap 在打开对话框时将类添加到正文的事实。我们使用这个类来隐藏正文,只打印对话框。

为了确保我们可以确定页面的主体,我们需要在 div 中包含主页内容中的所有内容 - 我使用了 id="mainContent"。下面的示例页面布局 - 带有一个主页和两个对话框

<body>
 <div class="container body-content">

  <div id="mainContent">
       main page stuff     
  </div>
  <!-- Dialog One -->
  <div class="modal fade in">
   <div class="modal-dialog">
    <div class="modal-content">
          ...
    </div>
   </div>
  </div>

  <!-- Dialog Two -->
  <div class="modal fade in">
   <div class="modal-dialog">
    <div class="modal-content">
          ...
    </div>
   </div>
  </div>

 </div>
</body>

然后在我们的 CSS 打印媒体查询中,我使用 display: none 来隐藏我不想显示的所有内容 - 即打开对话框时的 mainContent。我还使用了一个特定的类 noPrint 用于页面的任何不应该显示的部分——比如操作按钮。在这里,我还隐藏了页眉和页脚。您可能需要对其进行调整以获得您想要的。

@media print {
    header, .footer, footer {
        display: none;
    }

    /* hide main content when dialog open */
    body.modal-open div.container.body-content div#mainContent {
        display: none;
    }

    .noPrint {
        display: none;
    }
}
于 2015-09-01T14:20:58.473 回答
0

我遇到了两个问题问题 1:所有字段一个接一个地出现,问题 2 用于从弹出窗口打印时页面底部的空白。

我解决了这个问题

使所有身体都不显示* 元素中的大多数都用于隐藏可见性,从而创造空间,因此避免隐藏可见性

    @media print {
        body * {
           display:none;
        width:auto;
        height:auto;
        margin:0px;padding:0px; 
        }
        #printSection, #printSection * {
            display:inline-block!important;
        }
        #printSection {
            position:absolute;
            left:0;
            top:0;  
            margin:0px; 
            page-break-before: none;
            page-break-after: none;
            page-break-inside: avoid;      
        }
#printSection .form-group{

      width:100%!important;
      float:left!important;
      page-break-after: avoid;
    }
#printSection label{
        float:left!important;
        width:200px!important;
        display:inline-block!important;
      }

#printSection .form-control.search-input{
        float:left!important;
        width:200px!important;
        display: inline-block!important;
      }
}
于 2016-10-07T09:45:08.617 回答
0

@media print{
	body{
		visibility: hidden; /* no print*/
	}
	.print{
		
		visibility:visible; /*print*/
	}
}
<body>
  <div class="noprint"> <!---no print--->
  <div class="noprint"> <!---no print--->
  <div class="print">   <!---print--->
  <div class="print">   <!---print--->


</body>

于 2018-06-21T15:41:20.897 回答
0

您可以从此来源下载 printThis lib https://github.com/jasonday/printThis/blob/0a7f799693af8a8303bf0b8df0efc80c2694af81/printThis.js 并将其包含到您的 html 页面中

调用以下 jquery 打印所有内容,包括不可见的内容。如果您有多个 css 文件,您可以将 css 文件包含在一个数组中。

$("#modalDiv").printThis({ 
    debug: false,              
    importCSS: true,             
    importStyle: true,         
    printContainer: true,       
    loadCSS: "../css/style.css", 
    pageTitle: "My Modal",             
    removeInline: false,        
    printDelay: 333,            
    header: null,             
    formValues: true          
}); 
于 2019-03-12T20:33:20.677 回答
0

所以我有一个反应应用程序,它作为一个 web 组件存在于多个旧网站上。这些解决方案都不是我想要的。接受的答案有缺点。假设我们有这个 CSS:

@media print {
  body * {
    visibility:hidden;
  }
  #printSection, #printSection * {
    visibility:visible;
  }
  #printSection {
    position:absolute;
    left:0;
    top:0;
  }
}

body * {visibility : hidden}如果用户按 CTRL+P,将阻止用户打印页面。

这也不考虑多个打印 UX 工作流程,以防用户可能需要从同一页面上的模态和抽屉打印页面。这是一个罕见的情况,但同样没有考虑到

解决方案

我选择的解决方案是在 body 上应用顶级 CSS 类。在我的 React Modal 组件中,我使用了 useEffect 调用

import React, { useEffect } from 'react'

export const ModalPane = (props) => {
  useEffect(() => {
    const body = document.querySelector('body')
    if (body) {
      body.classList.add('hide-on-print')
    }
    return () => {
      if (body) {
        body.classList.remove('hide-on-print')
      }
    }
  }, [])

  const handlePrint = () => {
    // add any prework or analytics tracking here etc
    window.print()
  }

  return (
    <div className="print-me">
      <h1>Modal content stuff here</h1>
      <button type="button" onClick={handlePrint}>Print</button>
    </div>
  )
}

一旦呈现此模态(也就是用户正在查看预期的模态),将仅打印模态的内容。不管他们是点击打印按钮还是按 CTRL+P

这应用了一个hide-on-print在 body 元素上调用的类。然后应用此媒体样式,其范围专门针对此打印 UX 实例(您可以为其他特定打印查询向正文添加更多类)

@media print {
  body.hide-for-print {
    visibility: hidden !important;
  }
  body.hide-for-print .print-me {
    visibility: visible;
  }
}

TLDR

hide-for-print使用仅在渲染时应用类的 react useEffect 组件。将 @print 媒体查询包装在此类后面。这可以处理所有预期的 UX 打印用例,并且可以扩展到任何其他特定的打印 UX 用例

于 2021-06-24T15:34:14.863 回答