繁体   English   中英

用户单击锚点返回时如何隐藏表和锚点标记中的值

[英]How to hide the value in table and anchor tag when user click the anchor return

我想在管理员单击锚点返回时隐藏该行,因为它已经保存在return.php中,因此只需要隐藏返回的状态即可,而挂起的则不是。 感谢你们对我的帮助

  <thead>
                                <tr>
                                    <th>Book title</th>                                 
                                    <th>Borrower</th>                                 
                                    <th>Type</th>                                 
                                    <th>Date Borrow</th>                                 
                                    <th>Due Date</th>                            
                                    <th>Date Returned</th>
                                    <th>Fines</th>
                                    <th>Borrow Status</th>
                                </tr>
                            </thead>
                            <tbody>

                              <?php  $user_query=mysqli_query($dbcon,"select * from borrow
                            LEFT JOIN member ON borrow.member_id = member.member_id
                            LEFT JOIN borrowdetails ON borrow.borrow_id = borrowdetails.borrow_id
                            LEFT JOIN book on borrowdetails.book_id =  book.book_id 
                            ORDER BY borrow.borrow_id DESC
                              ")or die(mysqli_error());
                                while($row=mysqli_fetch_array($user_query)){


$currentdate = date('Y/m/d');

$start = new DateTime($returndate=$row['due_date']); 

$end = new DateTime($currentdate);  

$fines =0;

if(strtotime($currentdate) > strtotime($returndate)){


 $days= $start->diff($end, true)->days;
$fines = $days > 0 ? intval(floor($days)) * 10 : 0;
$fi = $row['borrow_details_id'];
mysqli_query($dbcon,"update borrowdetails set fines='$fines' where borrow_details_id = '$fi'");
}

                                $id=$row['borrow_id'];
                                $book_id=$row['book_id'];
                                $borrow_details_id=$row['borrow_details_id'];

                                    ?>
                                <tr class="del<?php echo $id ?>">


                                <td><?php echo $row['book_title']; ?></td>
                                <td><?php echo $row['firstname']." ".$row['lastname']; ?></td>
                                <td><?php echo $row['type']; ?></td>
                                <td><?php echo $row['date_borrow']; ?></td> 
                                <td><?php echo $row['due_date']; ?> </td>
                                <td><?php echo $row['date_return']; ?> </td>
                                 <td><?php echo "₱ ".$fines; ?></td>
                                <td><?php echo $row['borrow_status'];?></td>
                                <td> <a rel="tooltip"  title="Return" id="<?php echo $borrow_details_id; ?>"
                                 href="#delete_book<?php echo $borrow_details_id; ?>" data-toggle="modal"   
                                  class="btn btn-success"><i class="icon-check icon-large"></i>Return</a>
                                <?php include('modal_return.php'); ?>
                                <td></td> 

                                </tr>
                                <?php  }  ?>
                            </tbody>
                        </table>

这是view_return.php,管理员将在其中查看所有待处理的书籍 归还书

这是书籍已经归还的历史/交易 归还书的历史

为此,您可以像下面的示例那样,在anchorTag或td中使用jquery添加“ test”类


 $('.test').click(function(){ $(this).parent().hide(); }); 
 <table> <tr> <td>Test</td> <td class="test" id="returnId1">Return</td> </tr> <tr> <td>Test2</td> <td class="test" id="returnId2">Return</td> </tr> </table> 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM