jQuery隐藏和显示面板

时间:2012-05-29 00:50:22

标签: jquery html css

在下面的代码中,我试图构建两个面板;新订单面板和跟踪订单面板。我面临的问题是在第一个面板中打开了两个面板的组件。 我不确定你是否解决了这个问题。这是代码,您可以尝试清楚地理解它:

<html>
<head>
<script type="text/javascript" src="jscss/jquery.js"></script>
<script type="text/javascript"> 
$(document).ready(function(){
$(".flip").click(function(){
$(".panel").slideToggle("slow");
  });
});
$(document).ready(function(){
$(".flip1").click(function(){
    $(".panel1").slideToggle("slow");
  });
});
</script>

<style type="text/css"> 
div.panel,p.flip
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel
{
height:220px;
display:none;
}
div.panel1,p.flip1
{
margin:0px;
padding:5px;
text-align:center;
background:#e5eecc;
border:solid 1px #c3c3c3;
}
div.panel1
{
height:220px;
display:none;
}
</style>
</head>

<body>

<div class="panel">
<form action="Order.php" method="post">
   Name<br /><input style="font-weight: bold;" name="name" size="60" type="text"                 AUTOCOMPLETE=OFF><br /><br />

   Subject<br /><input style="font-weight: bold;" name="subject" size="60" type="text"     id="subject"><br /> <br />

   Email<br /><input style="font-weight: bold;" name="email" size="60" type="text"><br /> <br />

   <input type="submit" value="submit" />
   </form>
</div>


<div class="panel1">
<form action="Track.php" method="post">
   ID<br /><input style="font-weight: bold;" name="id" size="60" type="text"         AUTOCOMPLETE=OFF><br /><br />
   <input type="submit" value="submit" />
   </form>
</div>

<p class="flip">New Order</p>
<br/><br/><br/>
<p class="flip1">Track Order</p>

</body>
</html>

由于

4 个答案:

答案 0 :(得分:1)

你的问题是你只是把它们放错了。使用panel,然后flip,然后panel1,然后flip1

答案 1 :(得分:1)

我为你做了改变。是的,你在HTML结构的顺序上犯了错误。你可以看一下:http://jsfiddle.net/zhujy_8833/pAerK/

基本上,请按此命令:

  1. div.panel

  2. p.flip

  3. div.panel1

  4. p.flip1

  5. 希望这会有所帮助。

答案 2 :(得分:1)

这是因为你的html代码的顺序错误,试试这个:

<body>

  <div class="panel">
    <form action="Order.php" method="post">
      Name<br /><input style="font-weight: bold;" name="name" size="60" type="text" AUTOCOMPLETE=OFF><br /><br />

      Subject<br /><input style="font-weight: bold;" name="subject" size="60" type="text" id="subject"><br /> <br />

      Email<br /><input style="font-weight: bold;" name="email" size="60" type="text"><br /> <br />

      <input type="submit" value="submit" />
    </form>
  </div>
  <p class="flip">New Order</p>
  <br/><br/><br/>

  <div class="panel1">
    <form action="Track.php" method="post">
      ID<br /><input style="font-weight: bold;" name="id" size="60" type="text"         AUTOCOMPLETE=OFF><br /><br />
      <input type="submit" value="submit" />
    </form>
  </div>
  <p class="flip1">Track Order</p>

答案 3 :(得分:0)

在标记中,您的订单是panel,panel1,New Order标题和Track Order标题。这是它们显示的顺序。