1

Chrome for Android の「クリック」イベントに応答しない要素のスクロール可能なリストがあります。ただし、「touchstart」は機能します。問題は、「touchstart」を使用すると、リストのスワイプ動作が妨げられることです。「クリック」に代わるものはありますか?

動作しません:

jQuery(document).on('click', '.items section', function(e) {
    // code
});

行う:

jQuery(document).on('touchstart', '.items section', function(e) {
    // code
});
4

1 に答える 1

0

You might need to let us see the code that you are using before anyone can be of much help. But your problem might be that touch start is bind to what ever the user does so you may need to unbind it.

Without seeing the code its hard to diagnose the problem.

于 2013-03-28T16:52:20.263 に答える