gpt4 book ai didi

javascript - 为什么这个确认功能没有继续下去?

转载 作者:行者123 更新时间:2023-11-28 14:26:45 24 4
gpt4 key购买 nike

我的 js 代码有问题。如果我单击“确定”或取消,我的记录将被删除。

<?php
if (isset($_SESSION['wybrany_projekt'])) {
while($row_1 = $result_1->fetch_assoc()) {
echo"<tr><td value='{$row_1['id']}'><a href='mainpage.search.delete.information.php?del=$row_1[id]'><div id='$row_1[id]' onclick='myFunction()';>[x]</div></a></td>\n";
}
}?>

<script>
function myFunction() {
var r=confirm("Delete this row?");
if (r==true) {
window.location.href="mainpage.search.delete.information.php";
return true
}
</script>

感谢您的帮助。

最佳答案

语法错误。您缺少一个括号(包含 } 字符):

<script>
function myFunction() {
var r=confirm("Delete this row?");
if (r==true) {
window.location.href="mainpage.search.delete.information.php";
return true
}
}
</script>

关于javascript - 为什么这个确认功能没有继续下去?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53011413/

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