-1

当鼠标在文档中“向上”时,此代码有效:

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

但是如何制作alert(),当鼠标在滚动按钮上时?

4

3 回答 3

0

使用 jQuery API:

.mouseup( handler(eventObject) )
于 2012-06-30T15:17:50.523 回答
0
$(document).mouseup(function(e){
    if(e.which == 2){                //2 is the code for the middle button
        //some codes...
    }
});

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

于 2013-11-23T04:33:07.977 回答
0

您可以使用“滚动”事件处理程序

$(window).scroll(function() {
  alert("mouseup");
});
于 2012-06-30T08:03:34.633 回答