<div id="parent"> <div id="child">cx</div> </div>
当我使用jquery
$('#parent').mouSEOut(function(){ //something here });
我想知道为什么当我的鼠标进入小孩div时,该功能会触发.我仍然在父母之内.我希望mouSEOut功能只有当我离开父div而不是当我在任何孩子div时才触发
http://jsbin.com/esiju/<例 干杯
$('#parent').mouseleave(function(){ //something here });
http://api.jquery.com/mouseleave/