如何打印网页的特定块/部分?
如何打印网页的特定块/部分? 打印选项看起来像打印屏幕功能。
How can I print a certain block/part of a web page?
Print option to look like Print Screen functionality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 css 和 media = print 选项。
比如:
不想打印的块可以设置display:none。
Use css, with the media = print option.
Like:
The blocks you don't want printed can set display:none.
请参阅 http://www.quackit.com/javascript/javascript_print.cfm
您可以使用 javascript 的
window.print()
打印页面。要将打印内容限制在页面的特定部分,您可以创建打印样式表(请参阅 http: //www.alistapart.com/articles/goingtoprint/),隐藏除所需内容之外的所有内容。See http://www.quackit.com/javascript/javascript_print.cfm
You can use javascript's
window.print()
to print the page. To restrict the printed content to a specific part of the page, you can create a print stylesheet (see http://www.alistapart.com/articles/goingtoprint/) that hides all but the desired content.