preventDefault()的方法,阻止事件的默认行为。
在移动端,手指点击一个元素,会经过:touchstart --> touchmove -> touchend -->click。
$("#largeImg").on("touchstart",function(e){
e.preventDefault();
$("#largeImg").css("display","none");
$(_thisImg).removeClass("active");
});
2023-07-27 18:35:22
preventDefault()的方法,阻止事件的默认行为。
在移动端,手指点击一个元素,会经过:touchstart --> touchmove -> touchend -->click。
$("#largeImg").on("touchstart",function(e){
e.preventDefault();
$("#largeImg").css("display","none");
$(_thisImg).removeClass("active");
});