猿问

关于jquery中hover、fadeOut、fadeIn问题

<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上的时候淡入,离开后淡出,问题淡出就无法淡入!
请求解决方法~

aluckdog
浏览 492回答 2
2回答
随时随地看视频慕课网APP

相关分类

JQuery
我要回答