我目前正在使用以下内容为我想要更改触摸类的每个元素:
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'); });