案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<form action="/example/demo_form.aspx" method="get">
5
  Email: <input type="text" name="email" /><br />
6
  Pin: <input type="text" name="fname" maxlength="4" /><br />
7
  <input type="reset" value="Reset" />
8
  <input type="submit" value="Submit" />
9
</form>
10
11
<p>请单击重置按钮,可以清空表单。</p>
12
<p>请单击确认按钮,输入会发送到服务器上名为 "demo_form.aspx" 的页面。</p>
13
14
</body>
15
</html>