ie8下$(document).on('mouseover mouseout','ul li',function(){})的bug
Posted huangzebin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ie8下$(document).on('mouseover mouseout','ul li',function(){})的bug相关的知识,希望对你有一定的参考价值。
$(document).on(‘mouseover mouseout‘,‘ul li‘,function(){
if (event.type == ‘mouseover‘) {
console.log($(this));
}else if(event.type == ‘mouseout‘){
console.log($(this));
}
});
上述代码在IE8下会console多个结果,在代码末端添加return false可解决问题;
以上是关于ie8下$(document).on('mouseover mouseout','ul li',function(){})的bug的主要内容,如果未能解决你的问题,请参考以下文章
$().click()和$(document).on('click','选择的元素',function(){})的不同
$().click()和$(document).on('click','要选择的元素',function(){})的不同