以下代码片段之间有什么区别吗?
片段1:
$("textarea").mouseenter(function() {
alert("Hello mouseenter!");
});
$("textarea").mouseleave(function() {
alert("Hello mouseleave!");
});
片段 2:
$("textarea").hover(function() {
alert("Hello mouseenter!");
}, function() {
alert("Hello mouseleave!");
});
我在 Chrome 和 Firefox 中检查了上述代码片段,但两个片段的行为相同。但是,我想确定一下,mouseenter-mouseleave 和悬停事件之间有什么区别吗?