警报是检查当我按下“确定”时它是否会运行。目前没有。我束手无策,特别是因为我几乎是 Javascript -6ren">
gpt4 book ai didi

php - 使用 confirm() 后,在 'ok' 上运行 PHP 代码

转载 作者:行者123 更新时间:2023-11-30 12:59:58 26 4
gpt4 key购买 nike

我目前有这段代码:

<form id="form1" name="form1" method="post" action="" 
onclick="return confirm('This is irreversible. Are you sure?');">
<input type="hidden" name="act" value="run">
<input id="btnDelete" name="btnDelete" type="button" value="Delete Selected"/>
</form>

<?php
if (isset($_POST['act']))
{
echo "<script>alert(\"sup\");</script>";
}
?>

警报是检查当我按下“确定”时它是否会运行。目前没有。我束手无策,特别是因为我几乎是 Javascript 的新手。如果有人可以提供帮助,我们将不胜感激!

最佳答案

为您的提交按钮提供一个type="submit",为您的表单提供一个onsubmit事件:

<form id="form1" name="form1" method="post" action="" 
onsubmit="return confirm('This is irreversible. Are you sure?');">
<input type="hidden" name="act" value="run">
<input id="btnDelete" name="btnDelete" type="submit" value="Delete selected"/>
</form>

关于php - 使用 confirm() 后,在 'ok' 上运行 PHP 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17561358/

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