gpt4 book ai didi

jquery - div onclick 在 imageFlow ipad 中不起作用

转载 作者:行者123 更新时间:2023-11-28 12:50:47 25 4
gpt4 key购买 nike

在 ipad 中,onclick 事件在 div 上不起作用。在 imageFlow 代码中,我用 div 替换了所有图像,但在 ipad 上点击事件不起作用。

我尝试将点击后的跟随更改为触摸和触摸启动,但没有任何效果。

switch (image.i == my.imageID) {
case false:

image.onclick = function () {
//$('.slideDiv').removeClass('imgnew');
alert('each time called');
my.glideTo(this.i);
};
break;

default:
this.zIndex = my.zIndex + 1;
if (image.url !== '') {
image.onclick = my.onClick;

}
break;
}

我试过了,

$(image).click()
$(image).live('click toch touchstart', function () {
// ...
});

添加光标指针,在 div 上添加 onClick()=""

最佳答案

试试这个:-

var ua = navigator.userAgent,
event = (ua.match(/iPad/i)) ? "touchstart" : "click";

$(image).bind(event, function(e) {
//do your stuff here
}

关于jquery - div onclick 在 imageFlow ipad 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16976614/

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