如何检测脚本或鼠标滚轮调用的事件?
对于示例此代码:
$(window).scroll(function(event){
// detecting here is scroll called by some script( $.scrollTo('#somediv') for sample ) or by mousewheel
});
$(window).scroll(function(e) {
if(!e.isTrigger) {
// mouse wheel
console.log('wheeeeeel');
}
});
我通常使用一个附加参数并在我对该函数的动态调用中使用它。
$('.item').click(function(event,explicit) {
if (explicit) console.log("I'm called explicitly!");
})
可以像这样触发$('.item').trigger('click',true)