touches:位于当前屏幕上的所有手指列表( 必需至少有 1 个手指在添加触发事件的元素上 )
    targetTouches:位于当前 DOM 元素上的手指列表
    changedTouches:触发当前事件的手指列表

    1. document.addEventListener('touchstart', (e) => {
    2. console.log(e);
    3. })