菜鸟教程 tryhtml_form_name 在线代码实例

运行 保存 全屏 右侧展示 实时查看
主题:

 <form name="myForm" action="/statics/demosource/demo-form.php" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br><br>
<input type="button" onclick="formSubmit()" value="发送表单数据!">
</form>

<p>注意,头部的 JavaScript 部分使用了表单的名称来提交指定的表单。</p>