如何在打印功能中插入网页上已显示的 div。
这是功能:
function printHTML(input){
var iframe = document.createElement("iframe");
document.body.appendChild(iframe);
iframe.contentWindow.document.write(input);
iframe.contentWindow.print();
document.body.removeChild(iframe);
}
printHTML('<h1>Test!</h1>');
但我需要放入网页上已经显示的内容