Javascript鼠標事件
鼠標移入移出事件
mouserenter 鼠標移入事件 不冒泡,換言之,對子元素不生效
mouseleave 鼠標移出事件 不冒泡,換言之,對子元素不生效
mouseover 鼠標移入事件 冒泡,對子元素生效
mouseout 鼠標移出事件 冒泡,對子元素生效
移入移出需要正確組合使用,mouserenter、mouseleave適合tooltip場景,mouserover、mouserout適合下拉框、下拉菜單等需要進入操作的場景
鼠標移入移出事件
mouserenter 鼠標移入事件 不冒泡,換言之,對子元素不生效
mouseleave 鼠標移出事件 不冒泡,換言之,對子元素不生效
mouseover 鼠標移入事件 冒泡,對子元素生效
mouseout 鼠標移出事件 冒泡,對子元素生效
移入移出需要正確組合使用,mouserenter、mouseleave適合tooltip場景,mouserover、mouserout適合下拉框、下拉菜單等需要進入操作的場景