我在 PHP 中有这个 while 循环
<?php
while ($row = mysqli_fetch_assoc($getPosts)) {
$post_id = $row['post_id'];
echo "<td><a rel='$post_id' id='get_post_id'
onclick='active_del_modal()'>Delete</a></td>";
}
?>
在这个循环中,当我们点击“删除”链接时,变量“$post_id”的值发生变化。我想在它改变时获得“$post_id”的值。我试过这个 JS 代码
function active_del_modal() {
var x = document.getElementById("get_post_id").getAttribute("rel");
alert(x);
}
但它只给了我“$post_id”的最后一个值。我想在“$post_id”的每个值发生变化时获取它,并且这个值应该是单独的,而不是像这个 23 46 545 545 等。我不想使用任何框架,如 jQuery。
慕仙森
皈依舞