A simple way for JS to stop bubbling and prevent browser default behavior _javascript tips

Source: Internet
Author: User

Stop Bubbling General Method:

function Stopbubble (e) { 
//If event object is provided, non IE browser if 
(e && e.stoppropagation) 
  // Using the Stoppropagation () method of the 
  e.stoppropagation (); 
else 
  //use IE's cancelbubble = True to cancel event bubbling 
  window.event.cancelBubble = true; 
}

Block browser default behavior-general methods

Block browser default behavior 
function Stopdefault (e) { 
  //block default browser action (web) 
  if (e && e.preventdefault) 
    E.preventdefault (); 
  The way in IE to block the default action of a function 
  else 
    window.event.returnValue = false; 
  return false; 
}

Event compatibility

function Myfn (e) {var evt = e. e:window.event;}

JS Stop bubbling Compatible

Window.event? window.event.cancelBubble = True:evt.stopPropagation ();

JS prevents default behavior compatibility

Window.event? Window.event.returnValue = False:evt.preventDefault ();

The above JS stop bubbling and block browser default behavior of the simple way is to share the whole of the content of everyone, hope to give you a reference, but also hope that we support the cloud habitat community.

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.