Javascript 停止默认的时间处理


  1. event.preventDefault()
    1
    2
    3
    4
     $('a').click(function (e) {
         // custom handling here
         e.preventDefault();
     });
    
  2. return false

    1
    2
    3
    4
     $('a').click(function () {
         // custom handling here
         return false;
     });
    

return false from within a jQuery event handler is effectively the same as calling both e.preventDefault and e.stopPropagation on the passed jQuery.Event object.

e.preventDefault() will prevent the default event from occuring, e.stopPropagation() will prevent the event from bubbling up and return false will do both. Note that this behaviour differs from normal (non-jQuery) event handlers, in which, notably, return false does not stop the event from bubbling up.