gpt4 book ai didi

jquery - jquery 中的 ontouchstart 和 ontouchend?

转载 作者:太空狗 更新时间:2023-10-29 13:33:50 26 4
gpt4 key购买 nike

我目前对每个要更改触摸类的元素使用以下内容:

ontouchstart="$(this).addClass('select');" ontouchend="$(this).removeClass('select');"

我想知道是否有这样的东西?

$("#element").touchstart(function(){
$(this).addClass('select');
},
function(){
$(this).removeClass('select');
});

我将能够列出我想要拥有此属性的所有元素。我已经尝试了很多东西,但无法让它发挥作用。

最佳答案

我最后只用了这个:

$('#nav li').bind('touchstart', function(){
$(this).addClass('select');
}).bind('touchend', function(){
$(this).removeClass('select');
});

关于jquery - jquery 中的 ontouchstart 和 ontouchend?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12339923/

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