我有一个页面,管理员可以在其中管理用户帐户。这是通过单击主页 (admin/usermanage/) 上用户名旁边的编辑链接来完成的,该链接将管理员带到该用户 ID 的编辑页面 (admin/usermanage/?edit=x (其中 X 是用户身份))。
在此页面上,有一个删除按钮,可将用户带回列出所有帐户的主页。
function deleteaccount_confirmation() {
var answer = confirm("Are you sure you want to delete this account?")
if (answer){
window.location = "../usermanage/index.php";
}
}
这虽然行不通。用户停留在同一页面上,但 URL 未更改 (admin/usernamage/?edit=x)
任何可能的解决方案?