Bootstrap 表单选择
当您希望允许用户从多个选项中进行选择时使用选择,但默认情况下它只允许一个。
- 将 <select> 用于用户熟悉的列表选项,例如州或数字。
- 使用 multiple = "multiple" 允许用户选择多项。
示例
您可以尝试运行以下代码来实现 Bootstrap 表单选择
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <meta name = "viewport" content="width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css"> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script> </head> <body> <form role = "form"> <div class = "form-group"> <label for = "name">Country</label> <select class = "form-control"> <option>India</option> <option>Australia</option> <option>US</option> </select> </div> </form> </body> </html>
广告