4
var mouseStillDown = false;
$(".grab").mousedown(function(e) {
        mouseStillDown=true;
        getLocation();
    }).mouseup(function(e) {
        mouseStillDown = false;
        getLocation();
    });

if(mouseStillDown) {
$("#image_360").bind("mousemove", function(e){
     $("#location").text("e.pageX: " + e.pageX + ", e.pageY: " + e.pageY);
});
}

else if(!mouseStillDown) {
    $("#image_360").unbind("mousemove", function(e){
     $("#location").text("removed location");
    });
}

バインドされていないmousemoveを使用していても、pageXとpageYのテキストがdivに表示されます。id=location

4

1 に答える 1

6

そのはず$("#image_360").unbind("mousemove");

http://api.jquery.com/unbind/

于 2012-05-15T00:05:10.153 に答える