案例:html/html5 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<form action="/example/demo_form.aspx" method="get">
5
  <p><input type="checkbox" name="fname" value="Bike" /> I have a bike</p>
6
  <p><input type="checkbox" name="lname" value="Car" checked="checked" /> I have a car</p>
7
  <input type="submit" value="Submit" />
8
</form>
9
10
<p>请在提交按钮上单击,输入会发送到服务器上名为 "demo_form.aspx" 的页面。</p>
11
12
</body>
13
</html>