可以使用事件绑定机制。
如:
$('元素').bind({
'touchstart mousedown' : function(){
$('#touch_tips').text('按下或触摸');
},
'touchmove mousemove' : function(){
$('#touch_tips').text('移动中');
},
'touchend touchcancel mouseup' : function(){
$('#touch_tips').text('松开');
}
})
具体请搜索【touch event】手机触屏事件。注意,不支持windows phone!