嗨,我对 mouseenter 和 ajax 触发器有疑问。如果我像 1 秒那样专注于对象,我想触发 ajax。如果我离开了对象,它不应该触发 ajax 事件。
$('.popHover').mouseenter(function(e){
setTimeout(function(){
// ajax event here and pophover will show
},1000)
}).mouseout(function(e){
// close pophover
})