将鼠标移动到mousedown函数中与jQuery绑定

时间:2010-05-28 10:17:35

标签: javascript jquery javascript-events

我试图在鼠标左键停止时将mousemove事件绑定到div,并在释放时解除绑定。这段代码应该是相当自我解释的。

function handleMouseDown(e, sbar){
    if (e.button == 0){
        console.log(sbar); //firebug
        sbar.bind('mousemove', function(event){
            handleMouseMove(event, sbar);
        });
    }
}

function handleMouseUp(e, sbar){
    sbar.unbind('mousemove');       
}

function handleMouseMove(e, sbar){
    // not sure it this will work yet, but unimportant
    $(".position").html(e.pageX);
}

$(document).ready(function (){

    var statusbar = $(".statusbar");

    statusbar.mousedown(function(event){
        handleMouseDown(event, this);
    });

    statusbar.mouseup(function(event){
        handleMouseUp(event, this);
    });

});

HTML的重要部分如下所示

<div id="main">
    <div class="statusbar">
        <p class="position"></p>
    </div>
</div>

Firebug说在handleMouseDown和handleMouseUp中的变量 sbar 上未定义绑定方法。 firebug控制台为注释 // firebug 的行打印出<div class="statusbar">

我做错了,可能在绑定mousedown和mouseup时...但是什么?! 我正在使用jQuery v1.4.2,如果有帮助吗?

1 个答案:

答案 0 :(得分:6)

.bind().unbind()是jQuery函数,因此您需要稍微调整一下,而不是:

    sbar.bind('mousemove', function(event){
        handleMouseMove(event, sbar);
    });

您需要这个(将其包装为jQuery对象):

    $(sbar).bind('mousemove', function(event){
        handleMouseMove(event, sbar);
    });

.unbind()

相同
$(sbar).unbind('mousemove');

You can see a working demo with only those corrections here:)