この PHP コードを使用して、JavaScript クリック イベント ハンドラーが添付されたボタンを作成し、ボタンが押されたときにアラートを表示します。
<?php
if(isset($_POST['take-attendance'])){
$date = date("d/m");
echo'<center><table><tr><th> Student-Id </th> <th> Name </th> <th>'.$date.'</th></tr>';
foreach($sheet_data as $row) {
echo '<tr><td>'.$row['id'].'</td><td>'.$row['name'].'</td><td> <input type = "button" value = "A" name = "'.$row['id'].'" id = "'.$row['id'].'" class = "apbutton" ></td></tr>';
}
echo '</table></center>';
echo'<input type="button" name="mark-attendance" id="mark-attendance" value="Mark Attendance" class = "mark-attendance">';
}
?>
<script>
$(".apbutton").on("click", function() {
var buttonId = $(this).attr("id");
alert(buttonId);
});
</script>
関数をさらに実行する際にいくつかの問題に直面しているため、PHPで同じ関数を記述しようとしています。