jQuery打印图片、pdf与txt的例子

发布时间:2019-11-18编辑:脚本学堂
本文介绍了jQuery打印图片pdf、txt的方法,二个例子,学习jquery打印图片、pdf以及文本的方法,需要的朋友参考下。

jquery打印图片pdf、txt方法示例

例子:
 

复制代码 代码示例:

<div style="display:none">
<div id="to_print"></div>
<input type="button" id="print_button" value="Print" onclick="document.getElementById('FILEtoPrint').focus(); document.getElementById('FILEtoPrint').contentWindow.print();" />
</div>

<script>
function printSome(path){ //传入文件路径
$("#to_print").html('<iframe src='+path+' id="FILEtoPrint"></iframe>');
setTimeout(function(){$("#print_button").click();}, 500);
} // www.jb200.com
</script>

使用方法:
在web界面添加按钮调用js代码就可以了。