我们使用这个 javascript 提醒用户,现在我想将此功能添加到我的 html 表单中,它使用 post 方法将数据发送到我的 php 表单处理页面。
现在我想要的是在用户按下取消按钮时终止操作,这意味着不应发送使用 post 方法发送的所有数据,并且该人将无法处理表单,除非他/她单击OK
按钮。那么有可能吗?或者这只是一个白痴问题?
<html>
<head>
<script type="text/javascript">
function show_confirm()
{
var r=confirm("Press a button!");
if (r==true)
{
alert("You pressed OK!");
}
else
{
alert("You pressed Cancel!");
}
}
</script>
</head>
<body>
<input type="button" onclick="show_confirm()" value="Show a confirm box" />
</body>
</html>