Bootstrap Tutorial - Bootstrap RadioButton








You can also create a group of radio buttons in which only one button is selectable.

<!DOCTYPE html>
<html lang="en">
<head>
<script type='text/javascript'
  src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<link rel="stylesheet"
  href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet"
  href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script
  src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
  src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script type="text/javascript">
<!-- w  w  w .  j  a v  a  2  s  .  c  o  m-->

</script>  
</head>
  <body style='margin:30px'>
    <div class="btn-group" data-toggle="buttons">
        <label  class="btn btn-info">
            <input  type="radio" name="options"> Option  1
        </label>
        <label  class="btn btn-info">
            <input  type="radio" name="options"> Option  2
        </label>
        <label  class="btn btn-info">
            <input  type="radio" name="options"> Option  3
        </label>
    </div>
  </body>
</html>

Click to view the demo





Pre select

Add the class .active on input's label element to pre-selected an option.

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<style type="text/css">
    .bs-example{<!--from  w  w w  . j  av  a 2 s  . co m-->
      margin: 20px;
    }
</style>
</head>
<body>
<div class="bs-example">
    <div class="btn-group" data-toggle="buttons">
        <label class="btn btn-primary active">
            <input type="radio" name="options" id="option1"> Option 1
        </label>
        <label class="btn btn-primary">
            <input type="radio" name="options" id="option2"> Option 2
        </label>
        <label class="btn btn-primary">
            <input type="radio" name="options" id="option3"> Option 3
        </label>
    </div>
</div>
</body>
</html>

Click to view the demo