使用php获取后隐藏表单
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 jquery 在按下提交按钮时隐藏表单。像
应该这样做。你可以不用jquery,只使用javascript来做到这一点——基本上添加一个onclick事件来更改表单的css以在单击提交时显示:无。为了方便起见,我可能建议将其放在 div 部分中。
Use jquery to hide the form when the submit button is pressed. Something like
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.