Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 209 Bytes

检查是否支持触摸事件.md

File metadata and controls

9 lines (7 loc) · 209 Bytes

检查是否支持触摸事件

检查当前浏览器是否支持触摸事件:

const touchSupported =
  'ontouchstart' in window ||
  (window.DocumentTouch && document instanceof DocumentTouch)