我有许多需要点击的动态生成的 div。对于面向鼠标的设备,我通常这样做:
$("#wrap").on("click", 'div', function() { console.log("clicked!"); });
我注意到在使用 jGestures 自定义事件时,手机的灵敏度会大大提高,以这种方式使用时效果很好:
$("#wrap").bind('tapone', function() { console.log("tapped!"); });
但是,我不能像这样使用tapone
jQuery.on
事件:
$("#wrap").on("tapone", 'div', function() { console.log("tapped!"); });
有谁知道解决这个问题的方法?