日期:2014-05-16  浏览次数:20358 次

这种效果 怎么才能一个一个的实现

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
  $(".flip").mouseover(function(){
    $(".panel").slideDown(500);
  });
  $("#content").mouseleave(function(){
    $(".panel").slideUp(500);
  });
});
</script>
   
<style type="text/css"> 
div.panel,p.flip
{
  
margin:0px;
padding:5px;
text-align:center;

border:solid 1px #c3c3c3;
}
div.panel
{
  
height:120px;
display:none;
}
</style>
   
<body>
 <div id="content" style="display:block;width:300px;">
<p class="flip">滑过这里</p>
<div class="panel">
<p>11111111111111111</p>
<p>2222222222222222222222</p>
</div>
 </div>
<div id="content" style="display:block;width:300px;">
<p class="flip">滑过这里</p>
<div class="panel">
<p>11111111111111111</p>
<p>2222222222222222222222</p>
</div>
 </div>
</body>
</html>

请问下 如果我需要两个以上的这样的效果 需要的是效果一个一个的实现 而不是同时实现 应该这么做啊

------解决方案--------------------
$(".flip").mouseover(function(){
$(this).next(".panel").slideDown(500);
  });
  $("#content").mouseout(function(){
$(".panel").slideUp(500);
  });


那就改成这样吧,不过建议把content改为class去标记
id在一个页面的唯一性,就算是jquery,也是有问题的。
如果不改为class=content的话,你试试直接悬浮到第二个content,是没有办法slideUp的,改为class就没有问题了。
只是建议。