click事件会不生效,应该用什么事件代替
$("xx").on("touchstart",function(){
})
click事件在移动端一样能行 只不过会有300ms的延迟,可以用touchstart或者自定义事件tab 来代替
zepto.js touch.js
touchstart或者zepto.js框架的tap事件
$("xx").on("touchstart",function(){
雷雷})
click事件在移动端一样能行 只不过会有300ms的延迟,可以用touchstart或者自定义事件tab 来代替
zepto.js touch.js
touchstart或者zepto.js框架的tap事件