当鼠标在文档中“UP”时,此代码正常工作:
$(document).on("mouseup", function () {
alert("mouseup");
});
但是当滚动按钮上的鼠标为UP时,如何制作alert()
?
答案 0 :(得分:0)
$(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...
}
});