gpt4 book ai didi

javascript - 将数据发送到 mysql 表时,html 按钮(onclick)不起作用

转载 作者:行者123 更新时间:2023-11-29 11:34:48 26 4
gpt4 key购买 nike

所以我在 html 页面上有一个表单,它从 mysql 表中检索数据。用户可以修改这些数据,或删除整行。我有一个 html 按钮,具有删除整行的功能,并且通过该按钮,我有一个 javascript 函数,该函数显示一个确认弹出框,确认用户是否想要删除它。如果他们单击"is",则会将其发送到另一个执行删除的 php 页面。问题是当我单击确认框时什么也没有发生,它只是停留在同一页面上。这是我的 html 和 javascript 代码:

<form class="form-inline" method=GET action="envoieModifierAlbumAdmin.php">
<table class="table table-striped">
<tr>
<td><button type="button" class="btn btn-danger" onclick="verif()">Supprimer Cet Album</button>
</td><td></td><td></td>
</tr>

<tr>
<td><label for="exampleInputName2">id: </label>
<input readonly type="text" class="form-control" value="<?php echo "$donnees[id]"?>" id="exampleInputName2" name="id">
</td><td></td><td></td>
</tr>
<tr>
<td><label for="exampleInputName2">Nom d'album: </label>
<input type="text" class="form-control" id="exampleInputName2" name="titre" value="<?php echo "$donnees[titre]"?>"></td>
<td></td><td></td>
</tr>
</table>
</form>
<script>
function verif(){
var x;
if(confirm("Vous êtes sûr que vous voulez supprimer ce compte?") == true){
document.location="supprimerAlbumAdmin.php?id=$_GET['id']";
}
else
}
</script>

唯一的问题是按钮,上表的其他部分只是为了显示用户正在修改的内容的示例。提前致谢!

最佳答案

你的值应该是这样的

value="<?php echo  $_GET['id'] ?>"

不是这样的

value="<?php echo "$donnees[id]"?>"

并将按钮类型更改为提交

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script>


function verif(){
alert("hi");
var x;
if(confirm("Vous êtes sûr que vous voulez supprimer ce compte?") == true){

//window.location.replace("https://google.com");
//exit();
return true;

}
else
{

return false;

}

}
</script>
<form class="form-inline" method="GET" action="envoieModifierAlbumAdmin.php">
<table class="table table-striped">


<tr>
<td><label for="exampleInputName2">id: </label>
<input readonly type="text" class="form-control" value="" id="exampleInputName2" name="id">
</td><td></td><td></td>
</tr>
<tr>
<td><label for="exampleInputName2">Nom d'album: </label>
<input type="text" class="form-control" id="exampleInputName2" name="titre" value=""></td>
<td></td><td></td>
</tr>
<tr>
<td><button type="submit" class="btn btn-danger" onclick="verif()">Supprimer Cet Album</button>
</td><td></td><td></td>
</tr>
</table>
</form>

关于javascript - 将数据发送到 mysql 表时,html 按钮(onclick)不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36809744/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com