我有一个小问题,我使用 PHP while 循环创建了一个删除按钮,如下所示:
while($something = mysql_fetch_array($sql_something)){
$id = $something['id']
echo '<a href="somewhere.php?id='.$id.'"><button onclick="delconfirm()">Delete</button></a>
}
这个回声是一些内容的删除按钮。但是我需要用户确认首先删除,这就是onclick="delconfirm()"
进来的地方。
我的确认看起来像这样:
function delconfirm()
{
var r=confirm("Are you sure you want to delete this content?");
if (r==true){
// ...do nothing i guess? it needs to redirect using the PHP echo'd link...
}
else{
window.location = "edit.php";
}
}
但是,无论您按取消还是确定,它都会将其删除。我怎样才能解决这个问题?