每一个你不满意的现在,都有一个你不努力的曾经. 网站首页 > js
js table预览打印 之 jQuery.print.js 超好用 (原创)
发布时间:2018-12-10 16:01:43 修改时间:2018-12-10 16:07:24 阅读:10692 评论:0 0
话不多说 上代码(其中少量冗余代码自行摘除):
<html> <head> <script src='jquery.js'></script> <script src='jQuery.print.js'></script> <script language="javascript"> $(function(){ $('.ewm_print').qrcode({text:'1761222291',width: 100, //宽度 height:100,}) //高度); }) function printdiv(printpage){ var headstr = "<html><head><title></title></head><body>"; var footstr = "</body>"; var newstr = document.all.item(printpage).innerHTML; var oldstr = document.body.innerHTML; document.body.innerHTML = headstr+newstr+footstr; window.print(); document.body.innerHTML = oldstr; return false; } </script> <title>div print</title> </head> <body> <input name="b_print" type="button" class="ipt" onClick="printdiv('div_print');" value=" Print "> <div id="div_print"> <div style="width:300px;height:50px; position:relative" id="ewm_print"> <div class='ewm_print' style="width:57px;height:57px; position:absolute; left:92px;top:0"> <img width="42px;" height="42px;" src="153051.jpg" alt=""> </div> <div class='ewm_print' style="width:57px;height:57px; position:absolute; right:0px;top:0"> <img width="42px;" height="42px;" src="153051.jpg" alt=""> </div> </div> </div> </body> </html>
下载提取码:f8m7
回复列表
关键字词:lt,gt,div,nbsp,print,script
上一篇:css常用属性