0

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

<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

4 回答 4

1

您的问题是您只是将它们按错误的顺序排列。使用panel,然后flip,然后panel1,然后flip1

于 2012-05-29T01:37:17.260 回答
1

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

基本上,请按如下顺序排列:

  1. 分区面板

  2. p.翻转

  3. div.panel1

  4. p.flip1

希望这会有所帮助。

于 2012-05-29T02:09:11.450 回答
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>

于 2012-05-29T04:11:21.703 回答
0

在标记中,您的订单是面板、面板 1、新订单标题和跟踪订单标题。这是它们显示的顺序。

于 2012-05-29T00:58:56.397 回答