Print preview from multiple iframes?

前端 未结 5 1147
南笙
南笙 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:15

    If iframe previews may be just static images, you can do the following:

    • provide hidden image (with preview) next to each iframe
    • provide separate CSS file for printer using media queries
    • in this file, hide the iframes and show the images

    If you do it like this, you will have images with previews instead of iframes in print view.

提交回复
热议问题