HTML
HTML <form> 元素
带有两个输入字段和一个提交按钮的 HTML 表单
源代码:
点击运行 »
<form action="/plays/html-form-submit" method="get"> 姓:<input type="text" name="lname"> <br>名:<input type="text" name="fname"> <br><input type="submit" value="提交"> </form>
运行结果:
点击运行 »