HTML 参考手册
HTML <form> method 属性
使用 "post" 方法来提交表单 - 通过 "post" 方法来发送表单数据。
源代码:
点击运行 »
<form action="demo_form_method_post.php" method="post" target="_blank"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="submit" value="提交"> </form> <p>点击提交按钮,输入框数据将被发送到服务器上的“demo-form_method.php”页面。</p>
运行结果:
点击运行 »