我正在学习 jQuery 的基础知识,当我发现 mouseleave 和 mouseenter 动作时,我开始想知道应该在哪里放置 mouseleave 动作?哪一个更正确并且永远有效?
$(document).ready(function(){
$('div').mouseenter(function(){
$(this).fadeTo('fast','1');
$(this).mouseleave(function(){
$(this).fadeTo('fast','0.25');
});
});
});
或者也许 this1 更好?
$(document).ready(function(){
$('div').mouseenter(function(){
$(this).fadeTo('fast','1');
});
$('div').mouseleave(function(){
$(this).fadeTo('fast','0.25');
});
});