gpt4 book ai didi

php - 问你确定要提交吗? JavaScript?

转载 作者:行者123 更新时间:2023-11-30 07:05:24 25 4
gpt4 key购买 nike

我目前有这个。

 //other stuff up here - not important
echo "<td><form action='redeem.php' method='post' id='form'><input type='hidden' name='redeem' value='1' /><input type='hidden' name='id' value='" . $id . "' /><input type='submit' name='Redeem' value='Redeem'></form></td>";
} else {
echo "<td><form action='redeem.php' method='post' id='form'><input type='hidden' name='redeem' value='0' /><input type='hidden' name='id' value='" . $id . "' /><input type='submit' name='Un-Redeem' value='Un-Redeem'></form></td>";
//other stuff down here - not important

我想更改它,以便在您按下时:
a) “兑换”提交按钮会提醒您说:“您确定要兑换吗?”
b) “取消兑换”提交按钮会提醒您说“您确定要取消兑换吗?”

我已经尝试了其中的一些方法,包括提交时的 ONCLICK,但都没有用。我相信那是因为我在 ECHO 中有它,我不得不删除阻止函数发生的 (") 引号.

有人知道我可以用另一种方法吗?

最佳答案

您可以使用 Javascript 确认功能。

if(confirm("Are you sure you want to Redeem?")) {
// do something
} else {
// do something
}

您也可以通过在表单中​​添加以下代码来在表单提交时执行此操作:

onsubmit="return confirm('Are you sure you want to Redeem?');"

只有当用户点击“确定”时,表单才会提交。

关于php - 问你确定要提交吗? JavaScript?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14591937/

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