我有2个div<div id="type2" class='hidden' style="position:fixed;width:300px;height:400px;text-align:center;left:200px;top:100px;background-color:white";> </div> js动态往id = type2的div里添加一个divtype2的div有一个鼠标事件 $('#type2').mouseout(function(){
$("#type2" ).addClass('hidden');
$("#type2").html("");
});但是我鼠标移到动态添加的的div时没有离开id=type2的div时触发了这个鼠标移除事件,怎么不触发?
添加回答
举报
0/150
提交
取消