Safari手机上的点击事件jQuery

时间:2019-05-08 08:17:15

标签: jquery touch mobile-safari jquery-click-event

jquery click事件在移动浏览器中不起作用。

我尝试了“ curson:指针”,也降级/升级了jquery版本,但是没有用。

https://codepen.io/larsen1982/pen/yWYNLj

$(".next").click(function(){
    if(animating) return false;
    animating = true;

这是jquery: http://thecodeplayer.com/uploads/js/jquery-1.9.1.min.js

在台式机,ipad和Android smarthpone浏览器中,代码可以正常工作。 在chrome和safari mobile(iphone)中,按钮不起作用。

2 个答案:

答案 0 :(得分:1)

尝试添加touchstart

$(".next").on('touchstart click', function(){
    ...
});

答案 1 :(得分:0)

问题在于iPhone不会引发点击事件。他们引发“触摸”事件。添加以下代码即可。

function touchHandler(event){
    var touches = event.changedTouches,
        first = touches[0],
        type = "";

    switch(event.type)
    {
       case "touchstart": type = "mousedown"; break;
       case "touchmove":  type = "mousemove"; break;        
       case "touchend":   type = "mouseup"; break;
       default: return;
    }

    var simulatedEvent = document.createEvent("MouseEvent");
    simulatedEvent.initMouseEvent(type, true, true, window, 1, 
                          first.screenX, first.screenY, 
                          first.clientX, first.clientY, false, 
                          false, false, false, 0/*left*/, null);

    first.target.dispatchEvent(simulatedEvent);
    event.preventDefault();
}

function init() {
    document.addEventListener("touchstart", touchHandler, true);
    document.addEventListener("touchmove", touchHandler, true);
    document.addEventListener("touchend", touchHandler, true);
    document.addEventListener("touchcancel", touchHandler, true);    
}