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.
在 Javascript 上,ipad 将通过单击威胁悬停,而下一次单击将是触发的真正单击事件。
我们可以在第一次点击 ipad 后触发 unhover 或 mouseout 或模糊,所以第一次点击后的下一次点击仍然是悬停事件?
要在 ipad 上捕捉内容,您可以查找这些事件 touchstart、touchend、touchmove。
要触发某些事情,您只需执行 $(element).trigger('event_name');
$('testElement').on('touchend', function () { $(this).trigger('mouseout'); });