티스토리 뷰
let ReactDOM = require('react-dom');
printContent: function(el) {
var printContents = ReactDOM.findDOMNode(el).innerHTML;
var windowObject = window.open('', "PrintWindow", "width=5, height=5, top=200, lefg=200, toolbars=no, scrollbars=no, status=no, resizable=no");
windowObject.document.writeln(documentContent.innerHTML);
windowObject.document.close();
windowObject.focus();
windowObject.print();
windowObject.close();
}
'Javascript > React' 카테고리의 다른 글
[React] 페이지를 빠져 나갈때 확인창 띄우기 (0) | 2021.02.22 |
---|---|
[React] react-beautiful-dnd 라이브러리 사용법 (0) | 2020.07.14 |
[React] react에 대시보드 템플릿 적용 참고 사이트 (0) | 2020.03.17 |
[React] ie11에서 wrapAnsi16 에러 (0) | 2020.03.12 |
[React] 폼 요소 event (0) | 2020.03.06 |