我正在为某种滑动创建一些表单,它将使用浏览器打印服务,如chrome,firefox和其他浏览器,但是当我打印预览这些表单时,我看不到输入值。
<textarea style="width:370px; min-width:370px; max-width:370px; min-height:100px; max-height:100px; height:100px; border:none; resize: none; overflow:hidden" placeholder="hello" ></textarea>
的Javascript
var divToPrint=document.getElementById("printdata");
var newWin= window.open();
newWin.document.write(divToPrint.innerHTML);
newWin.print();
//newWin.close();