0
我使用jQuery觸摸移動使用,因此用戶可以懸停星級。它工作正常,但點擊功能由於某種原因被禁用。jQuery可觸摸(移動)禁用點擊功能
你知道是什麼原因造成的嗎?或者如何解決它?
我的代碼:
t2=$('.star').Hoverable();
$t2.newHover2(function(e, touch){ //hoverIN
$(this).addClass("star-rating-hover");
}, function(e, touch){//hoverOut
$(this).removeClass("star-rating-hover");
});
插件:http://plugins.jquery.com/project/Touchable
預先感謝您。