addEventListener("touchend", function ()_

南城夏季發表於2018-04-03
var div=document.getElementById('div');
div.addEventListener('touchstart',function(e){
    //touchstart:觸控開始的一瞬間,這裡的e包含的觸控一瞬間所觸控的元素的資訊
});
div.addEventListener('touchmove',function(e){
    //touchmove:觸控進行時,這裡的e包含的觸控的元素資訊
});
div.addEventListener('touchend',function(e){
    //touchend:觸控結束的一瞬間,這裡的e沒有多大的作用
});

相關文章