3

如何检测脚本或鼠标滚轮调用的事件?

对于示例此代码:

$(window).scroll(function(event){
// detecting here is scroll called by some script( $.scrollTo('#somediv') for sample ) or by mousewheel
});
4

2 回答 2

3
$(window).scroll(function(e) {
    if(!e.isTrigger) {
        // mouse wheel
        console.log('wheeeeeel');
    }
});

使用鼠标滚轮事件的演示

使用点击事件的演示

于 2012-08-21T03:27:45.963 回答
1

我通常使用一个附加参数并在我对该函数的动态调用中使用它。

$('.item').click(function(event,explicit) {
    if (explicit) console.log("I'm called explicitly!");
})

可以像这样触发$('.item').trigger('click',true)

于 2012-08-21T03:51:57.933 回答