我有一个div
, div
, img
, a
,元素h3
。input
它们动态变化(轮播)。所以我需要停止setInterval
在悬停时提供此更改,但它不起作用(hover
事件不会触发)。
jQuery('div.slider').on('hover', 'div, img, a, h3, input',
//Tried jQuery('body').on('hover', 'div.slider'...
//Alsro tried on('focusin focusout')
function(event){
console.log('on');
if(event.type === 'focusin'){
console.log(event.type);
stopCarousel();
}
else if(event.type === 'focusout'){
console.log(event.type);
startCarousel();
}
}
);
问题出在哪里?