独立显示每个用户信息

时间:2019-07-04 02:45:22

标签: javascript php html mysql

在我的代码中,当单击箭头时,会显示所有用户的信息。我想独立显示每个用户信息

like this

     <script>
      $(document).ready(function(){
      $("*#hhh").click(function(){
      $("*.myDIV").slideToggle("slow");
        });
        });
      </script>
 <?php
 foreach ($sql as $sq) {
if ($student != $sq["Student_ID"]) {
    $student = $sq["Student_ID"];
    echo' <tr><td> <label>
          <input type="submit"  style="display: none;"onclick="myFunction()"       id="hhh">
  <img  style ="width: 20px"src="images/up-arrow.png"id="file"><br>
    </label></td>';
    echo'<td id="fff">'.hvh.'</td></tr>';

     }

   echo' <tr class="myDIV" class="myDIV">';
   echo'<td class="myDIV">'.cf.'</td>';
   echo'<td class="myDIV">'.vdfv.'</td>';
   echo'<td class="myDIV">'.fv.'</td></tr>';


     }

0 个答案:

没有答案