码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器局部打印实现,iframe打印

时间:2018-06-25 15:18:07      阅读:554      评论:0      收藏:0      [点我收藏+]

标签:oms   print   func   upd   let   stat   als   test   leo   

const handleOk = () =>{
let ele = document.getElementById(‘printInfor‘);
let iframe=window.frames[‘myPrint‘];
iframe.document.open();
console.log(iframe);
console.log(document.getElementById(‘myPrint‘));
document.getElementById(‘myPrint‘).contentWindow.document.body!=null?document.getElementById(‘myPrint‘).contentWindow.document.body.innerHTML="":""
let mystyle=`
<style>
div,p{
margin: 0;
padding: 0;
word-break:break-all
}
.ant-table-fixed{
border: 1px solid #333;
}
body{
width:100%;
height: 100%;
}
table{
border-collapse: collapse;/*关键代码*/
table-layout: fixed;
}

td ,th{
border: 1px solid #333;
border-collapse: collapse;/*关键代码*/
text-align: center;
font-size: 14px;
}
</style>
`
iframe.document.write(mystyle);
iframe.document.write(ele.innerHTML);
iframe.document.close();
setTimeout(
function(){
document.getElementById(‘myPrint‘).contentWindow.print()
},100)
dispatch({ type: ‘OmsEntryOrder/updateState‘, payload: {isSaveOk: false}});
}

浏览器局部打印实现,iframe打印

标签:oms   print   func   upd   let   stat   als   test   leo   

原文地址:https://www.cnblogs.com/ypwei/p/9223694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!