The click event will not take effect, what event should be used instead
$("xx").on("touchstart",function(){
//something
})
The click event also works on the mobile terminal, but there will be a 300ms delay. You can use touchstart or custom event tab instead
zepto.js touch.js
touchstart or tap event of zepto.js framework
$("xx").on("touchstart",function(){
})
The click event also works on the mobile terminal, but there will be a 300ms delay. You can use touchstart or custom event tab instead
zepto.js touch.js
touchstart or tap event of zepto.js framework