如何在浏览器中打印时显示textarea值?

时间:2016-08-04 04:27:54

标签: javascript html print-preview

我正在为某种滑动创建一些表单,它将使用浏览器打印服务,如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();

0 个答案:

没有答案