jquery – 在动态加载的内容上使用hammer.js

前端之家收集整理的这篇文章主要介绍了jquery – 在动态加载的内容上使用hammer.js前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在玩hammer.js的网络应用程序.

我可以让它工作得很好,除了加载了ajax的内容.

我为jquery使用hammer.js特殊事件插件.

以下工作正常:

$('#menu a').on("tap",function(event) {
 //console.log(event);
});

但是当我使用jquery委托语法时:

$('body').on("tap",'#menu a',function(event) {
 //console.log(event);
});

什么都没发生…

什么是正确的语法?

最佳答案
如果动态添加a元素,请尝试此操作:

$('#menu').on("tap",'a',function(event) {
  //console.log(event);
});

或这个:

$('#menu').hammer().on("tap",function(event) {
  //console.log(event);
});
原文链接:https://www.f2er.com/jquery/428135.html

猜你在找的jQuery相关文章