获取不到事件目标是为什么
.on('mouseenter','li',function(e){
if(!activeRow){
acitveRow=$(e.target).addClass('active');
console.log(activeRow); //输出是undefind
activeMenu=$('#'+activeRow.data('id')); //报错
activeMenu.removeClass('none');
return;
}