$(document).ready(function(){
$('#li1').mouseover(function(){
$(".over2").slideDown("slow");
$(".over").hide();
});
$('#li1').mouseout(function(){
$(".over2").slideUp("fast");
$(".over").show();
});
});
这个的html就在这里!!
<li id="li1" class="news_tabs">
<img src="Images/images.jpg" height="290" width="200" />
<div class="over">
<h5>The blackberry Launched in</h5>
</div>
<div id="over2" class="over2">
<p>The total discription The total discription The
total discription The total
discription The total discription </p>
</div>
</li>
<li class="news_tabs"> this is two</li>
<li class="news_tabs">this is three</li>
<li class="news_tabs"> this is four</li>
有一个图像,我想做的是->当用户将鼠标悬停在图像上时,标题隐藏并且简短的描述从顶部滑出,当鼠标移出时,标题再次出现并且描述向上滑动。但是在这里,当鼠标在向下滑动的描述上时,描述一次又一次地上下滑动,直到鼠标退出...请帮助
如何通过此代码阻止无法控制的向下和向上滑动?