跳到主要内容

print

css 设置滚动条默认至最底部

examples

source code

import React from 'react';

const PrintComponent = () => {
const data = {
title: 'content',
};

const handlePrint = () => {
//判断iframe是否存在,不存在则创建iframe
let iframe = document.getElementById('print-iframe');

const el = document.getElementById('printcontent');
iframe = document.createElement('IFRAME');
let doc = null;
iframe.setAttribute('id', 'print-iframe');
iframe.setAttribute(
'style',
'position:absolute;width:0px;height:0px;left:-500px;top:-500px;',
);
document.body.appendChild(iframe);
doc = iframe.contentWindow.document;
//这里可以自定义样式
doc.write('<style media="print">@page {size: auto;margin: 0mm;}</style>'); //解决出现页眉页脚和路径的问题
doc.write('<div>' + el.innerHTML + '</div>');
doc.close();
iframe.contentWindow.focus();

setTimeout(function () {
iframe.contentWindow.print();
}, 50); //解决第一次样式不生效的问题
if (navigator.userAgent.indexOf('MSIE') > 0) {
document.body.removeChild(iframe);
}
};

return (
<div>
<button type="submit" className="print" onClick={handlePrint}>
print
</button>

<div id="printcontent" style="display:none">
这里可以自己填充打印内容
</div>
</div>
);
};

export default PrintComponent;