为了账号安全,请及时绑定邮箱和手机立即绑定

从表中访问点击事件数据

从表中访问点击事件数据

缥缈止盈 2021-10-21 10:34:58
我有表“登录”,并使用 php 将 mysql 中的数据列出到 html 表中。<table class="table">                            <thead class="thead-dark">                            <tr>                                <th scope="col">Sl.NO</th>                                <th scope="col">Name</th>                                <th scope="col">Username</th>                                <th scope="col">Mobile</th>                                <th scope="col">Join Date</th>                                <th scope="col">Action</th>                            </tr>                            </thead>                            <tbody>                                <?php                                if($req_result->num_rows > 0)                                    {                                        while($req_row = $req_result->fetch_assoc()) {                                            $i+=1;                                            $reqmail = $req_row['username'];                                            $reqmobile = $req_row['id'];                                            $reqname = $req_row['name'];                                            $join_date = $req_row['join_date'];                                            ?>                                            <tr>                                              <th scope="row"><?php echo $i ;?></th>                                              <td><?php echo $reqname ;?></td>                                              <td><?php echo $reqmail ;?></td>                                              <td><?php echo $reqmobile ;?></td>                                              <td><?php echo $join_date ; ?></td>                                            </tr>                                            <?php                                        }                                    }                                ?>                          </tbody>                        </table>我想在单击时访问该按钮值,并处理另一个查询。tbale“登录”有多个数据。我该怎么做?
查看完整描述

2 回答

?
繁华开满天机

TA贡献1816条经验 获得超4个赞

尝试使用这个。如果有什么事让我知道。干杯


//catch html button with js assigned to variable button

let button = document.querySelector('.btn btn-primary');


//listen for the click

button.addEventListener('click', function(){

   button.value;

});

// console log the the value of button

console.log(button);


查看完整回答
反对 回复 2021-10-21
  • 2 回答
  • 0 关注
  • 147 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信