当我连续按下屏幕时,我正在使用图像上的点击事件。可能是什么问题。 我正在使用Jquery 1.9+和phonegap。 Jquery Mobile tap事件也无法正常工作。 以下是我的代码
$('#bg').on("click",function(e){
touches += 1;
console.log("Touches :"+touches);
document.getElementById("touches").innerHTML="Invalid Touches :"+touches;
if(touches >= 5){
//alert("5 invalid touches");
touches = 0;
retryScreen();
}
e.stopPropagation();
});
我正在检查屏幕上的无效触摸,如果用户在移动屏幕上连续点击,则无法正常工作。 请有人帮帮我