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.
我想在触摸屏幕时隐藏图像,并在用户不再触摸屏幕时再次显示它。目前我有这个:
$('#patternFrame').mousedown(function() { $("#patternImage").hide(); })
它在桌面上工作得很好。但是在 iPad 上,当我停止触摸屏幕时会触发 mousedown 事件。所以它现在的反应更像是一只老鼠。
有解决方案吗?
$('.button').on('touchstart', function(){ });