Chrome for Android の「クリック」イベントに応答しない要素のスクロール可能なリストがあります。ただし、「touchstart」は機能します。問題は、「touchstart」を使用すると、リストのスワイプ動作が妨げられることです。「クリック」に代わるものはありますか?
動作しません:
jQuery(document).on('click', '.items section', function(e) {
// code
});
行う:
jQuery(document).on('touchstart', '.items section', function(e) {
// code
});