当鼠标在文档中“向上”时,此代码有效:
$(document).on("mouseup", function () {
alert("mouseup");
});
但是如何制作alert()
,当鼠标在滚动按钮上时?
当鼠标在文档中“向上”时,此代码有效:
$(document).on("mouseup", function () {
alert("mouseup");
});
但是如何制作alert()
,当鼠标在滚动按钮上时?
使用 jQuery API:
.mouseup( handler(eventObject) )
$(document).mouseup(function(e){
if(e.which == 2){ //2 is the code for the middle button
//some codes...
}
});
您可以使用“滚动”事件处理程序:
$(window).scroll(function() {
alert("mouseup");
});