This article provides some common web printing and local printing methods for emergency purposes.
First, define the css style:
The Code is as follows:
@ Media print {
. Noprint {display: none; color: green}
}
You only need to add class = noprint to the label for the content that you do not want to print. During the printing, the customer will not see any changes on the page.
Call window. print () when printing ();
Other js local printing methods:
Flowers and trees:
When printing, replace the content to be printed with the entire body content (the user will see the changes during printing, and the customer experience is not good)
The Code is as follows:
Function preview (preview)
......{
If (then <10 )......{
Bdhtml###doc ument. body. innerHTML; // obtain the html code of the current page
Sprnstr =" "; // Set the start area for printing.
Eprnstr =" "; // Set the print end Area
Prnhtml = bdhtml. substring (bdhtml. indexOf (sprnstr) + 18); // retrieves html from the start code
Prnhtml = prnhtml. substring (0, prnhtml. indexOf (eprnstr); // retrieves html from the end code
Too many Doc ument. body. innerHTML = prnhtml;
Window. print ();
Required parameter Doc ument. body. innerHTML = bdhtml;
} Else ......{
Window. print ();
}
}
It is easy to add the content to be printed in the page to the center XXXXX
Add a print button onclick = preview (1)
-----------------------------------------
WebBrowser is a browser control built in IE, which does not need to be downloaded by users)
I. WebBrowser Control
The Code is as follows:
2. WebBrowder Control Method
The Code is as follows:
// Print
WebBrowser1.ExecWB (6, 1 );
// Print settings
WebBrowser1.ExecWB (8, 1 );
// Print and preview
WebBrowser1.ExecWB (7,1 );
There are other usage examples of this component:
WebBrowser. ExecWB () Open
Web. ExecWB () Close all existing IE Windows and open a new window
Web. ExecWB () save Web Page
Web. ExecWB (6, 1) Printing
Web. ExecWB (7,1) print and preview
Web. ExecWB (8, 1) Printing page settings
Web. ExecWB () view page properties
Web. ExecWB () seems to be undo, to be confirmed
Select all Web. ExecWB ()
Web. ExecWB (22, 1) Refresh
Web. ExecWB () Close form no prompt
However, printing prints the entire page, and prints out anything on the page. Sometimes we only need to print the data table, and then we need to write a style: hide the part that you do not want to print:
Style content:
The Code is as follows:
Then you can use the style:
No printing required
The Code is as follows:
The Code is as follows: