我目前有这个。
//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) 'Un-Redeem' 提交按钮,它会提醒您说:“您确定要取消赎回吗?”
我已经尝试了其中的一些,包括提交时的 ONCLICK,但没有一个起作用。我相信这是因为我在 ECHO 中有它,我不得不删除阻止该功能发生的 (") 引号。
有人知道我可以做到的另一种方式吗?