码迷,mamicode.com
首页 > 其他好文 > 详细

单选/多选框

时间:2018-09-16 22:58:31      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:mail   form   name   text   多选   check   required   NPU   cti   

<!DOCTYPE>
<!DOCTYPE html>
<html>
<head>
 <title>from表单</title>
 <meta charset="utf-8">
</head>
<body>
<form method="get" action="">
 <p>最喜欢的水果:</p>
 1.苹果<input type="radio" name="f" value="苹果" checked="checked">
 2.橘子<input type="radio" name="f" value="橘子">
 3.芒果<input type="radio" name="f" value="芒果"><br>
 <br>
 <br>
 <br>
 <p>我喜欢的水果有</p>
 1.苹果<input type="checkbox" name="d" value="苹果">
 2.橘子<input type="checkbox" name="d" value="橘子">
 3.芒果<input type="checkbox" name="d" value="芒果"><br>
 
<br>
<br>
<br>
<form action="" method="get" class="form-example">
  <div class="form-example">
    <label for="name">Enter your name: </label>
    <input type="text" name="name" id="name" required>
  </div>
  <div class="form-example">
    <label for="email">Enter your email: </label>
    <input type="email" name="email" id="email" required>
  </div>
  <div class="form-example">
    <input type="submit" value="Subscribe!">
  </div>
</form>
</form>
</body>
</html>

单选/多选框

标签:mail   form   name   text   多选   check   required   NPU   cti   

原文地址:https://www.cnblogs.com/l-mz/p/9657817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!