Window.print print the specified div instance code

Source: Internet
Author: User
Tags html page print print

 window.print can print Web pages, but sometimes we just want to print a specific control or content, see the example below

First we can put the content to be printed in the Div, and then use the following code to print.   Code as follows: <html> <head> <script language= "JavaScript" > Function Printdiv (printpage) {var headstr = " <html><head><title></title></head><body> "; var footstr = "</body>"; var newstr = Document.All.Item (printpage). InnerHTML; var oldstr = Document.body.innerHTML; Document.body.innerHTML = Headstr+newstr+footstr; Window.print ();  Document.body.innerHTML = Oldstr; return false; } </script> <title>div print</title> </head>   <body>//html Page//other Content you w Ouldn ' t like to print <input name= "b_print" type= "button" class= "IPT"   onclick= "printdiv (' Div_print ');" Value= " Print ">   <div id=" Div_print ">   <h1 style=" color:red ">the div content which you want to PRINT&L t;/h1>   </div>//other content your wouldn ' t like to print//other content for you wouldn ' t like to print </b ody>   </html>   

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.