JS scripts trigger the Click Event of the control; JS right-click menu pop-up events and mouse events;

Source: Internet
Author: User

Method 1: Dom element. Click () applies to csfoi

<SCRIPT type = "text/jacascript">FunctionClickaword () {alert ("Hello World"); Document. getelementbyid ("Tempa"). Click ();//Trigger the click event of Element A, cross-browser}</SCRIPT>

 

Method 2: Dom element. fireevent ("onclick") only applies to IE

 

2. js context menu events and mouse events;

Ondblclick triggers oncontextmenu when you double-click the left mouse button. When you right-click the menu and open the menu list, onmousedown is triggered when you click any mouse button.

 

Right-click Disabled

Document. onmousedown = function () {If (event. Button = 2) document. getelementbyid ('div '). Display = "";};

Disable context menu events

Document. oncontextmenu = function () {return false;} // no longer enable onmousedown & event. Button = 2

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.