Touchend not firing after touchmove

后端 未结 2 858
暗喜
暗喜 2021-02-13 22:08

I\'m trying to make a page for mobile devices that detects the scrollTop position and scrolls to the top of the page if scrollTop is lower than half th

2条回答
  •  爱一瞬间的悲伤
    2021-02-13 22:42

    try to attach listener on both touchend and touchcancel.

    $(document).on('touchend touchcancel', function() {
        doSomthing();
    });
    

提交回复
热议问题