Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
移动 Safari 不会注册touchmove事件!touchstart两者touchend都按预期工作,但touchmove拒绝开火。
touchmove
touchstart
touchend
$("#Element").on({ "touchmove" : function(e){ e.preventDefault(); console.log("touch move!"); } });
问题出在 CSS 中。为了让我的网站上的滚动更流畅,我补充说:
html, body { -webkit-overflow-scrolling: touch; }
一旦我评论了这一点,就touchmove正确地解雇了。