<html>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$('.c').hide();
$('.c').hover
(
function(){$(this).fadeIn();},
function(){$(this).fadeOut();}
)
</script>
<body>
<div class="c">Hello</div>
</body>
</html>
我想鼠标在hello上的时候淡入,离开后淡出,问题淡出就无法淡入!
请求解决方法~
相关分类