JS中阻止默认事件与事件冒泡
Posted Mr Zhu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中阻止默认事件与事件冒泡相关的知识,希望对你有一定的参考价值。
JQuery 提供了两种方式来阻止事件冒泡。 方式一:event.stopPropagation(); $("#div1").mousedown(function(event){ event.stopPropagation(); }); 方式二:return false; $("#div1").mousedown(function(event){ return false; });
$("a").click(function(event){ event.preventDefault(); });
以上是关于JS中阻止默认事件与事件冒泡的主要内容,如果未能解决你的问题,请参考以下文章