HTML 参考手册
HTML <form> name 属性
带有 name 属性的 HTML 表单
源代码:
点击运行 »
<form action="form_action.html" method="get" name="myForm"> First name: <input type="text" name="fname"><br> Last name: <input type="text" name="lname"><br> <input type="button" onclick="formSubmit()" value="发送表单数据!"> </form>
运行结果:
点击运行 »