标签:
$("form").bind( "submit", function() { return false; } );
$("form").bind( "submit", function(event){ event.preventDefault(); } );
$("form").bind( "submit", function(event){ event.stopPropagation(); } );
<script type="text/javascript"> $(document).ready(function(){ $(‘.one‘).click(function(e){ alert(‘one‘); }); $(‘.two‘).click(function(e){ alert(‘two‘); }); $(‘.three‘).click(function(e){ alert(‘three‘); //阻止起泡取消下面的注释 // e.stopPropagation(); }); }); </script> <div class="one" style="width:200px;height:200px;background:green;"> one <div class="two" style="width:150px;height:150px;background:yellow;"> two <div class="three"> three </div> </div> </div>
标签:
原文地址:http://www.cnblogs.com/xdot/p/5015125.html