HTML
HTML <form> 元素
将发送 POST 请求的简单表单
源代码:
点击运行 »
<form action="/plays/html-form-submit" method="post"> <label for="POST-name">名称:</label> <input id="POST-name" type="text" name="name" value="蜜蜂"> <input type="submit" value="保存"> </form>
运行结果:
点击运行 »