Print preview from multiple iframes?

前端 未结 5 1079
南笙
南笙 2021-01-14 06:48

I have several iframes in a page. I want to show in a print preview all the iframe contents as snapshots of iframes. I used window.print() for individual iframe

5条回答
  •  爱一瞬间的悲伤
    2021-01-14 07:28

    May this code helpful for you..

    HTML:

    
    

    Hi! I'm a report!

    Script

    function printall() {
      window.print();
      for (var i=0; i

    Fiddle : http://jsfiddle.net/ackMC/5/

提交回复
热议问题