2 回答

TA貢獻(xiàn)1813條經(jīng)驗 獲得超2個贊
你可以這樣做: php:
foreach($query as $row){
echo ' <tr>';
echo ' <td>'.$row['fname'].'</td>' ;
echo ' <td>'.$row['lname'].'</td>' ;
echo ' <td>'.$row['email'].'</td>' ;
echo ' <td>'.$row['account_name'].'</td>' ;
echo ' <td>'.$row['user_type'].'</td>' ;
echo ' <td><button data-id="' . $row['id'] . '" type="button" class="btn btn-danger delete"><i class="far fa-trash-alt"></i></button>';
echo ' <button type="button" class="btn btn-info edit"><i class="fas fa-user-edit"></i></button> </td>';
echo ' </tr>';
}
查詢:
$("button.delete").each(function(){
$(this).on('click', function(e){
if (confirm("Are you sure you want to delete this user's account?")) {
$.ajax({
url: 'deleteUser.php?id='+$(this).data('id'),
success: function(data) {
toastr.danger("User successfully deleted!");
}
});
} else {
//do something else
}
});
});

TA貢獻(xiàn)1811條經(jīng)驗 獲得超5個贊
HTML 4.01 規(guī)范規(guī)定 ID 必須在文檔范圍內(nèi)是唯一的。
HTML 5 規(guī)范說了同樣的話,但換句話說。它說 ID 在其主子樹中必須是唯一的,如果我們閱讀它的定義,它基本上就是文檔。
我會先解決這個問題:<button id="delete"需要是獨(dú)一無二的
下一步 - 我會在你的刪除按鈕上添加一個 onClick,這樣你就有了<button onclick="deleteUser(2);"
然后,我會將您的偵聽器注冊重寫為一個函數(shù):
function deleteUser(id){
if (confirm("Are you sure you want to delete this user's account?")) {
$.ajax({
url: 'deleteUser.php?id='+<?php echo $userID ?>,
success: function(data) {
toastr.danger("User successfully deleted!");
}
}
- 2 回答
- 0 關(guān)注
- 109 瀏覽
添加回答
舉報