在Javascript上,ipad会在单击时威胁悬停,下一次点击将是实时点击事件。
我们可以在第一次点击ipad后触发unhover或mouseout或模糊,所以第一次点击后点击仍然会悬停事件吗?
答案 0 :(得分:1)
要在ipad上捕获内容,您可以查找这些事件 touchstart,touchend,touchmove。
要触发你可以做的事情 $(元件).trigger( 'EVENT_NAME');
$('testElement').on('touchend', function () {
$(this).trigger('mouseout');
});