我想开发一个chrome静音打印应用程序,但软件编程解决方案不是kiosk.please帮我解决这个问题
window.onload = function () {
document.querySelector("#convert").addEventListener("click",printContent);
};
function printContent(){
var restore=document.body.innerHTML;
var print=document.getElementById('div1').innerHTML;
document.body.innerHTML=print;
window.print();
document.body.innerHTML=restore;
}
如何进行更改?