$(document).click() 在苹果手机上不能正常运行解决方案

本来是如下一段跳转代码,发现在安卓和微信开发者工具上都能正常运行,但是苹果手机就不行了。

$(document).on('click', '.url', function(){
    location.href = $(this).attr('data-url');
    return false; 
});

经过查找资料发现,苹果的需要在click后面加上touchstart

$(document).on('click touchstart', '.url', function(){
    location.href = $(this).attr('data-url');
    return false; 
});

测试可以正常运行了

备注

后来经过研究发现,如果把目标节点样式cursor设为pointer后就可以使用click了,应该是苹果认为只有pointer的才算是点击,大家有兴趣可以看下。

详见:https://www.cnblogs.com/lxwphp/p/10281073.html

你可能感兴趣的:($(document).click() 在苹果手机上不能正常运行解决方案)