madrobby / zepto

Zepto.js is a minimalist JavaScript library for modern browsers, with a jQuery-compatible API
http://zeptojs.com
Other
15k stars 3.93k forks source link

can not use event.stopPropagation() to stop the event propagation #1366

Open mobljs opened 2 years ago

mobljs commented 2 years ago

<div><p><em> some thing </em></p></div>

$('div').on('click','p',function(e){   // here still performed }).on('click','em',function(e){   e.stopPropagation( );   return false; });