打印页面

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function printpage()
  5. {
  6. window.print()
  7. }
  8. </script>
  9. </head>
  10. <body>
  11.  
  12. <input type="button" value="打印本页" onclick="printpage()" />
  13.  
  14. </body>
  15. </html>