ontouchstart和onquo​​uchend在jquery?

前端之家收集整理的这篇文章主要介绍了ontouchstart和onquo​​uchend在jquery?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用以下内容为我想要更改触摸类的每个元素:
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');
});
原文链接:https://www.f2er.com/jquery/179151.html

猜你在找的jQuery相关文章