停止事件传播
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了停止事件传播相关的知识,希望对你有一定的参考价值。
see http://www.undolog.com/2009/08/21/impedire-la-propagazione-degli-eventi-con-jquery/ for detail
$('a#mylink').click( function(event) { document.location = event.target.href; event.stopPropagation(); event.preventDefault(); } );
以上是关于停止事件传播的主要内容,如果未能解决你的问题,请参考以下文章