我正在查看jQuery文档,发现当我尝试将两个函数传递到 hover() 时,第一个函数类似于 < em> mouseenter() ,第二个行为类似于 mouseleave() 。请查看以下代码段。
$(document).ready(function(){
$('div').hover(
function(){
$(this).fadeTo("fast", 1);
},
function(){
$(this).fadeTo("fast", 0.25);
}
);
});
与
类似$(document).ready(function(){
$('div').mouseenter(function(){
$(this).fadeTo("fast", 1);
});
$('div').mouseleave(function(){
$(this).fadeTo("fast", 0.25);
});
});
实际上这两者有什么区别?