首页 > 编程 > JavaScript > 正文

jQuery打印图片pdf、txt示例代码

2019-11-20 14:20:05
字体:
来源:转载
供稿:网友

html加如下代码

<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); } </script>

web界面添加按钮调用js即可

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表