gpt4 book ai didi

jquery touchstart 事件在 iPhone 中不起作用

转载 作者:行者123 更新时间:2023-12-03 22:31:48 25 4
gpt4 key购买 nike

我正在尝试这样,但它在 iPhone 上不起作用

$(document).bind('touchstart',function(){
alert('hello');
});

但是它的工作原理是这样的

document.addEventListener('touchstart', function(){
alert('hello');
}, false);

如何让 touchstart 事件与 jquery 一起工作?

它正在与

$(document).on('touchstart', function(e){
//e.preventDefault();
var touch = e.touches[0] || e.changedTouches[0];
});

但出现错误 e.touches 不是对象

最佳答案

要获取 Touches 属性,您可以使用 e.originalEvent:

$(document).on('touchstart', function(e){
var touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0];
});

关于jquery touchstart 事件在 iPhone 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9390643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com