使用php获取后隐藏表单

发布于 2024-12-12 00:08:34 字数 586 浏览 0 评论 0原文

我有一个newletter php表单,所以我需要的是在用户单击提交按钮后隐藏html输入,我的代码如下所示:

<form id="addressForm" action="index.php" method="get">
    <p id="foarm">
      <input type="text" name="address" id="address" placeholder="[email protected]"/><br />
      <input type="submit" value="Notificame" id="gogo" />
    </p>
    <p id="response"><?php echo(storeAddress()); ?></p>
</form>

有什么想法吗? 谢谢。

I got a newletter php form, so what I need is to hide the html input after the user click the submiting button, my code looks like this:

<form id="addressForm" action="index.php" method="get">
    <p id="foarm">
      <input type="text" name="address" id="address" placeholder="[email protected]"/><br />
      <input type="submit" value="Notificame" id="gogo" />
    </p>
    <p id="response"><?php echo(storeAddress()); ?></p>
</form>

Any ideas?
Thanks.

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

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

发布评论

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

评论(1

花开柳相依 2024-12-19 00:08:34

使用 jquery 在按下提交按钮时隐藏表单。像

$("form#addressForm").submit(function()
{
    $("form#addressForm").hide();
    return true;
}

应该这样做。你可以不用jquery,只使用javascript来做到这一点——基本上添加一个onclick事件来更改表单的css以在单击提交时显示:无。为了方便起见,我可能建议将其放在 div 部分中。

Use jquery to hide the form when the submit button is pressed. Something like

$("form#addressForm").submit(function()
{
    $("form#addressForm").hide();
    return true;
}

Should do it. You could do it without jquery, just using javascript - basically add an onclick event to change the css of the form to display:none when you click submit. Id probably suggest placing it in a div section for ease.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文