鍍金池/ 問答/HTML/ touchstart touchmove 的event是否相同?

touchstart touchmove 的event是否相同?

document.addEventListener("touchstart",function(e){
    a = e;
})

document.addEventListener("touchmove",function(e){
    b = e;
    console.log(a===b)
})

// chrome 
false

// 老版本ios webview
true

請問這是ios當(dāng)初設(shè)定的時候就是如此嗎?

回答
編輯回答
無標題

這個沒有可比性呀,兄弟!

2017年7月24日 19:49