Js 打印 div

让人想犯罪 __ 提交于 2019-11-30 13:04:59
            var wind = window.open("", 'newwindow', 'height=700, width=1000, top=100, left=100, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no');
            
            var style = wind.document.createElement("style");  
            style.type = "text/css";  
            style.appendChild(wind.document.createTextNode(
                "table,table tr th, table tr td { border:1px solid #666666;border-collapse: collapse; }  \
table {width: 100%;margin-bottom: 60px; }"));
            wind.document.getElementsByTagName("head")[0].appendChild(style);
            
            wind.document.body.innerHTML = $('#divFormMuti').html();
            wind.print();

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!