不可见数据的打印问题
我用过onclick函数。单击按钮后显示数据。但最初数据已使用内联 css 属性 display:none 隐藏。我想打印浏览器中未显示的完全隐藏的数据
I have used onclick function. after click a button show data. but intially data has hidden using inline css property display:none. i want to print intially hidden data that are not shown in browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需定义一个带有媒体类型 print 的 CSS,其中数据不会被隐藏。
Simply define a CSS with media type print where the data isn't hidden.
您可以添加另一个 CSS,使用
media="print"
显示隐藏部分。You can add another CSS that shows the hidden parts with
media="print"
.