mouseenterの履歴

jQueryのイベントハンドラー。

ロールオーバーアニメーションをつくろーとしてmouseoverをつかったらうまくいかなかった。

原因はelementとそのchildの扱いらしい。

微妙にmouseentermouseoverではchildに対する判定が違う。

完全に理解はしていないが、今回のケースでは試しにmouseenterでやったらうまくいった。

jQuery公式サイトからとってきた説明によると

>http://docs.jquery.com/Events/mouseenter#fn>Show texts when mouseenter and mouseout event triggering. Mouseover fires when the pointer moves into or out from child element, while mouseenter doesn't.<<

mouseoverではchildへの出入りでも反応してるんかな?