0
我使用http://touchpunch.furf.com/來啓用移動滑動條上的觸摸效果,效果非常好。只是我希望能夠在滑塊被觸摸時顯示滑塊的當前值。如何檢查jquery.ui.touch-punch的滑塊是否被觸摸?
LIBARY
<!--slider event starts-->
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.8.21/jquery-ui.min.js"></script>
<script src="../scripts/jquery.ui.touch-punch.min.js"></script>
<script>$('#slider_small').draggable();</script>
<!--slider event ends-->
在桌面上,我用鼠標移動而移動圖謀我不知道用什麼:
$("#slider").mousemove(function(e){
$("#valBox").html($(this).val());
});
我試過,關於 「自來水」, 「ontouchstart」,dragable」鼠標按下」。有人可以幫我解決這個問題嗎?