我想创建一个滑块。这是我的javascript代码:
<div id="ghgh" style='width:50px;height:50px;position:absolute;top:0;left:0;background:#000'>
</div>
<script type="text/javascript">
$(document).bind('mousemove',function(ev){
$('#ghgh').offset({left:(ev.pageX-25)});});
</script>
但是,这仅适用于计算机,但不适用于触摸屏。我尝试使用诸如 touchmove、slide、scroll 等事件。但它们都不起作用。我应该使用哪些事件才能使其在触摸屏中工作?