<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta name="viewpot" content="width=device-width,initial-scale=1.0">

    <title>learn bootstrap</title>

    <link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
	<link href="google-code-prettify/prettify.css" rel="stylesheet">
  </head>
  <body onload="prettyPrint()">
  <script src="jquery1.11.3/jquery-1.11.3.min.js"></script>
  <script src="bootstrap/js/bootstrap.js"></script>
  <script src="google-code-prettify/prettify.js"></script>

  <div class="container">
    <label class="radio">
      <input type="radio" name="sex" value="male">男</label>
    <label class="radio">
      <input type="radio" name="sex" value="female">女</label>
      <label class="radio">
      <input type="radio" name="sex" value="other">其他</label>
  </div>
  </body>
</html>

注意

单选框的name必须是同一个东西,表示是一个组的。

相关文章:

  • 2021-11-17
  • 2022-12-23
  • 2021-08-08
  • 2022-02-13
  • 2022-12-23
  • 2021-11-21
猜你喜欢
  • 2021-12-10
  • 2022-02-16
  • 2022-01-20
  • 2021-06-21
  • 2021-10-05
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案