3

我在一个里面有 Lis 的 div 上使用 iSroll4,每个 LI 都有一个链接。当我开始滚动时,触发了内部 LI 的点击事件。我希望点击事件保持可用,但在滚动时不可用。

请帮忙.. thnx :)

4

1 回答 1

4
$('.link').on('click', function() {
  if (myScroll.moved) return; 
  // add click functionality here
});

来自 iScroll 论坛https://groups.google.com/forum/#!topic/iscroll/0ai6QzTtbJE

于 2013-02-14T00:51:00.403 回答