🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 阻止事件冒泡 > event.preventDefault 阻止事件的默认动作 ``` <a href="https://jquery.com">default click action is prevented</a> <div id="log"></div> $( "a" ).click(function( event ) { event.preventDefault(); $( "div" ) .append( "default " + event.type + " prevented" ) .appendTo( "#log" ); }); ```