我有这个不响应 Android 版 Chrome 上的“点击”事件的可滚动元素列表。但是,“touchstart”确实有效。问题是,使用“touchstart”会干扰列表的滑动行为。我可以使用“点击”的替代方法吗?
不起作用:
jQuery(document).on('click', '.items section', function(e) {
// code
});
做:
jQuery(document).on('touchstart', '.items section', function(e) {
// code
});