我有以下代码:
$(function () {
var target = $('span.slider') //can I make the variable apply to the target span?
target.mousedown(function() {
sliding = true
})
$(document).mouseup(function() {
sliding = false
})
$(document).mousemove(function(e) {
if(sliding){
target.css('left', e.pageX) //do I isolate here?
}
})
})
我的 html 中有四个“span.slider”。如何修改此 jquery 以使该功能仅适用于目标 span.slider?上面的代码移动了所有四个跨度,我完全理解为什么会这样。我无法将其定位到用户希望移动的跨度。