HTML DOM print() ·½·¨

¶¨ÒåºÍÓ÷¨

print() ·½·¨ÓÃÓÚ´òÓ¡µ±Ç°´°¿ÚµÄÄÚÈÝ¡£

µ÷Óà print() ·½·¨ËùÒý·¢µÄÐÐΪ¾ÍÏñÓû§µ¥»÷ä¯ÀÀÆ÷µÄ´òÓ¡°´Å¥¡£Í¨³££¬Õâ»á²úÉúÒ»¸ö¶Ô»°¿ò£¬ÈÃÓû§¿ÉÒÔÈ¡Ïû»ò¶¨ÖÆ´òÓ¡ÇëÇó¡£

Óï·¨

window.print()

ʵÀý 1

<html>
<head>
<script type="text/javascript">
function printpage()
  {
  window.print()
  }
</script>
</head>
<body>

<input type="button" value="Print this page"
onclick="printpage()" />

</body>
</html>
VUE