我有表“登录”,并使用 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);
添加回答
举报
0/150
提交
取消