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 touchcancel?我有一个 li,在一个事件之后它添加了一个 touchcancel。我想知道是否有人可能知道如何删除它以及它为什么会发生。
谢谢
您无法删除该事件,但您可以绑定到该事件,然后在其上进行 preventDefault,这样就不会发生任何事情。
使用 jQuery
$(document).on('touchcancel', function(event){event.preventDefault()})