JS 打印图片
Posted 折翼的飞鸟
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 打印图片相关的知识,希望对你有一定的参考价值。
在使用window.print()进行打印时,打印的内容可能会包含图片内容,此时的图片内容不能设置为背景图片,否则将无法再打印页面显示。
<!doctype html> <html> <head> <title></title> <script type="text/javascript"> function printfun(){ window.print(); } </script> </head> <body> <input type="button" value="打印" onclick="printfun()"><br/> 下面设置的img图片: <div> <img src="images/moganna.png"> </div> 下面图片是背景图片: <div style="background: url(\'images/moganna.png\'); width: 500px; height: 291px;"> </div> </body> </html>
以上是关于JS 打印图片的主要内容,如果未能解决你的问题,请参考以下文章
我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情