如果我写:
<div class="wrapper">
<div>
<input type="text" class="xxx"/>
</div>
<div>
<input type="text" class="yyy"/>
</div>
</div>
问题 :
当我写$(".wrapper").on("click",".yyy",function () {});
:
它是否也监听(并忽略).xxx
事件?
还是只是听.wrapper
并过滤所有non ".yyy"
元素事件?