Javascript - 如何取消带有确认消息的发布表单?

发布于 2024-12-14 16:03:48 字数 876 浏览 2 评论 0原文

这是接收 POST 的代码:

{{velocity}}
#if ($request.getMethod() == "POST")
$request.getParameter("servicename")
#end
{{/velocity}}

这是发送 POST 的代码:

{{velocity}}

{{html}}

这是 javascript 的代码:

<script type="text/javascript">
function validateForm()
{

c = confirm("Are you sure ?");
if(c == true){
alert("The foo has been created");
}else{
alert("The foo creation has been canceled.");
return false;
}
}
</script>

这是 html 表单的代码:

<form name="myForm" action="$doc.getURL('view')" method="post" onsubmit="return  validateForm()">
<input type="hidden" name="xaction" value="createservice" />
 Foo Name:
<input type="text" name="servicename" />
 <input type="submit" value="Create" />
 </form>
{{/html}}

 {{/velocity}}

Here is the code to Receive the POST :

{{velocity}}
#if ($request.getMethod() == "POST")
$request.getParameter("servicename")
#end
{{/velocity}}

Here is the code to Send the POST :

{{velocity}}

{{html}}

Here is the code for the javascript :

<script type="text/javascript">
function validateForm()
{

c = confirm("Are you sure ?");
if(c == true){
alert("The foo has been created");
}else{
alert("The foo creation has been canceled.");
return false;
}
}
</script>

Here is the code for the html form :

<form name="myForm" action="$doc.getURL('view')" method="post" onsubmit="return  validateForm()">
<input type="hidden" name="xaction" value="createservice" />
 Foo Name:
<input type="text" name="servicename" />
 <input type="submit" value="Create" />
 </form>
{{/html}}

 {{/velocity}}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唯憾梦倾城 2024-12-21 16:03:49

我不知道这是否对您有帮助,但以下代码可以工作:

<html>
<head>
<script type="text/javascript">

function foo() {
    if (confirm("Are you sure?")) {
        alert("OK");
        return true;
    }
    else {
        alert("KO");
        return false;
    }
}

</script>
</head>
<body>

<form method="post" onsubmit="return foo()">
    <input type="text" />
    <input type="submit" value="Go" />
</form>

</body>
</html>

然后您可以摆脱 foo

<form method="post" onsubmit="return confirm('Are you sure?')">

I don't know if this will help you but the following code works:

<html>
<head>
<script type="text/javascript">

function foo() {
    if (confirm("Are you sure?")) {
        alert("OK");
        return true;
    }
    else {
        alert("KO");
        return false;
    }
}

</script>
</head>
<body>

<form method="post" onsubmit="return foo()">
    <input type="text" />
    <input type="submit" value="Go" />
</form>

</body>
</html>

And then you can get rid of foo:

<form method="post" onsubmit="return confirm('Are you sure?')">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文