鼠标在文档滚动按钮上

时间:2012-06-30 08:00:08

标签: javascript jquery mouseup

当鼠标在文档中“UP”时,此代码正常工作:

$(document).on("mouseup", function () {
    alert("mouseup");
});

但是当滚动按钮上的鼠标为UP时,如何制作alert()

3 个答案:

答案 0 :(得分:0)

你可以"scroll" event handler

$(window).scroll(function() {
  alert("mouseup");
});

答案 1 :(得分:0)

使用jQuery API:

.mouseup( handler(eventObject) )

答案 2 :(得分:0)

$(document).mouseup(function(e){
    if(e.which == 2){                //2 is the code for the middle button
        //some codes...
    }
});

http://jsfiddle.net/DerekL/3wmaK/