JS打印页面 打印前隐藏打印按钮

  • Post author:
  • Post category:其他


<script type=”text/javascript”>

//打印

function preview() {


document.getElementById(‘printBtn’).style.display=”none”;

window.document.body.innerHTML = document.documentElement.innerHTML;

window.print();

};

</script>



版权声明:本文为qq_35913274原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。