单击动态按钮(使用切换)后信息未显示

时间:2019-03-26 04:32:19

标签: javascript php jquery html

点击“更多信息”按钮后,我试图显示一些其他信息。

首先,div是根据我的数据库动态生成的。哪个div包含一个“更多信息”按钮,单击该按钮应显示更多信息。但是,只有第一个按钮有效,并且单击该按钮时,将显示所有生成的div的所有“更多信息”。

我只想显示/隐藏与我单击的div有关的更多信息,而其他隐藏的信息。

这是HTML / PHP

<div id="event_info">
   <img src= "<?php echo $row['img'];?> "/>
   <div class="event_description">
      <h1><?php echo $row['gathering_name'];?></h1>
      <b>Hosted By:</b> <?php echo $row['event_host'];?> </br>
      <b>Location:</b> <?php echo $row['city'].', '. $row['state']; ?></br>
      <b>Date:</b> <?php $event_date = strtotime($row['event_start']);
         echo date("F jS, Y" , $event_date);?></br></br>
      <!-- MORE INFO ABOUT THE GATHERINGS -->
      <button class="findButton2" id="<?php echo $row['id'];?>">MORE INFO</button>
      <div id="<?php echo $row['id'];?>" class="event_moreinfo">
         <?php echo $row['description'];?></br>
         <b>Gym Name: </b> <?php echo $row['gym_name'];?> </br>
         <b>Gym Address: </b>  <?php echo $row['street_address'];?></br>
         <?php echo $row['city'].', '.$row['state'].', '. $row['country'];?></br>
         <b>Nearest Airport: </b> <?php echo $row['nearest_airport'];?></br>
         <b>Expected Attendance: </b> <?php echo $row['attendance']; ?></br>
         <b>Average Ticket Cost: </b> <?php echo $row['event_cost']; ?> </br>
         <b>Contact: </b> <a href = "mailto:<?php echo $row['host_email'];?>"> Host Email</a>               
      </div>
   </div>
</div>

这是我的脚本(jQuery)

$(document).ready(function() {
    var event_id = $(".findButton2").attr("id");
    $('#' + event_id).on('click', function() {
        $(".event_moreinfo").toggle(1000);
    });
});

2 个答案:

答案 0 :(得分:0)

之所以发生,是因为所有动态div都具有相同的类名event_moreinfo。像下面一样,将thisnext一起使用来toogle div。单击按钮时,只会切换下一个具有类event_moreinfo的div。

$(document).ready(function() {
    var event_id = $(".findButton2").attr("id");
    $('#' + event_id).on('click', function() {
        $(this).next(".event_moreinfo").toggle(1000);
    });
});

答案 1 :(得分:0)

对于多个元素,您具有相同的ID,而ID应该是唯一的。而且我认为这对于整个文档都是正确的,也是您的代码可能无法按预期工作的原因之一。另外,您正在动态生成div,因此最好委托绑定一个祖先,以确保触发任何对子div的点击。假设所有这些div是<div class=“event_table”>元素的直接子元素,然后

$(‘.event_table’).on(‘click’, ‘.event_info’, function () { 
    $(‘this’).find(‘.event_moreinfo’).toggle(1000);
});

将能够正确识别用户单击的元素。

有关此事的更多信息,请访问JQuery official documentation