gpt4 book ai didi

javascript - 将元素 id 从 PHP 传递到 Javascript

转载 作者:行者123 更新时间:2023-11-29 21:53:30 26 4
gpt4 key购买 nike

<分区>

我的 mysql 数据库中有一些数据。我正在使用 foreach 循环显示表中的数据,如下所示

<table> 
foreach($students as $row):?>
<tr><td><i id="expand<?php echo $row['student_id'];?>" class="myclass fa fa-plus-square"></i></td>
<td><?php echo $i; $i++;?></td>
<td><?php echo $row['roll'];?></td>
<td style="text-align:center;"><img src="<?php echo $this->crud_model->get_image_url('student',$row['student_id']);?>" class="img-circle" width="50" /></td>
<td><?php echo $row['name'];?></td>

<td><?php echo $row['address'];?></td>
<td><?php echo $row['phone'];?></td></tr></table>

我在 Javascript 中还有一个点击事件函数,如下所示

$('#expand').click(function(){
$('#dev').toggleClass('hidden');
});

这是我想在点击事件时隐藏和显示。请注意,此行包含学号为 $row['student_id'] 的学生数据

 <tr id="dev<?php echo $row['student_id'];?>" class="hidden">
<td colspan="7">
<table>
<tr><td>Phone Number is <?php echo $row['phone'];?></td></tr>
</table>
</td>
</tr>

我想将元素 id 从 php 传递到 javascipt,这样当点击 id expand 时它会执行一些功能,比如显示或隐藏

谢谢。

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com