如何打印网页的特定块/部分?

发布于 2024-08-20 22:31:47 字数 37 浏览 6 评论 0原文

如何打印网页的特定块/部分? 打印选项看起来像打印屏幕功能。

How can I print a certain block/part of a web page?
Print option to look like Print Screen functionality.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

划一舟意中人 2024-08-27 22:31:47

使用 css 和 media = print 选项。

比如:

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

不想打印的块可以设置display:none。

Use css, with the media = print option.

Like:

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

The blocks you don't want printed can set display:none.

葮薆情 2024-08-27 22:31:47

请参阅 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文