0
在touchstart和鼠標按下時,我想將元素移動到我的手指或光標下,然後能夠拖動它。將元素移動到手指下,然後以相同的動作拖動元素
JS:
$('.matiMarker').draggable();
$('.matiValMarker').bind("mousedown touchstart",function(e){
var that = this,
$(this).parent().find('.matiMarker').animate({
left : $(that).position().left + "px"
},100);
});
這樣將移動.matiMarker下我的手指/光標,我需要的發生是有同樣的鼠標按下/ touchstart事件是累贅的開始。我失去了如何做到這一點。