在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、问题背景:
二、问题原因:可能操作了document但是并未进行销毁(可能是) 三、问题解决:消除操作的document
//该方法参数 content:需要打印的元素 printFun = (content) =>{ var Window = window.open("", "页面打印", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no"); var style = "<style type='text/css'></style>"; Window.document.write(content + style); Window.focus(); Window.document.close(); //关闭document的输出流, 显示选定的数据 Window.print(); //打印当前窗口 return Window; }
var windows = this.print(document.getElementById('billDetails').innerHTML); windows.close(); 总结:
到此这篇关于React中使用window.print()出现页面无响应问题解决记录的文章就介绍到这了,更多相关React使用window.print()现页面无响应内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论