Jquery click事件不适用于设备中的li.我尝试使用click和touchstart事件,但使用touchstart时的问题是我无法向下滚动div.当我尝试通过单击li向下滚动时,它会被选中.有没有办法选择和滚动li使用任何jquery事件而不是jquery移动事件?
$('#liId').on({ 'touchstart' : function(){ console.log('Event Fired'} });
当我向所有li
添加样式类时,问题就
解决了.
.liClass {cursor:pointer; }
原文链接:https://www.f2er.com/jquery/175691.html