Parse the two types of printing in JS

Source: Internet
Author: User

Generally, you need to click the "print" button to print the page out. JS has two methods. Here we will give you a brief introduction. I believe this article will certainly help you gain some benefits.

Two Methods for JS Printing

You can click the "print" button to print the page out. JS usually has two methods.

1. Print with Object

Add object

 
 
  1. <objectIDobjectID=WebBrowser1WIDTH="0"HEIGHT="0" 
  2. CLASSID=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2> 
  3. </object> 

Add the following JS functions:

 
 
  1. <scripttypescripttype="text/javascript"> 
  2. functionprint()  
  3. {  
  4. document.getElementById(WebBrowser1).ExecWB(6,1);  
  5. }  
  6. </script> 
  7.  

Add print button: <ahref = "javascript: print ();"> print </a>

2. Use JS built-in function Printing

 
 
  1. <Ahrefahref = "javascript: window. print ();"> print </a>
  2.  

In fact, the first method is also a complex implementation method of the second method, but the first method provides more features such as previewing and modifying print settings.
The second method is recommended. For security reasons, some browsers, such as roaming, disable some objects. Therefore, the first method reports JS errors with insufficient permissions during roaming.
 

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.