使用 Bootstrap 禁用按钮


在 Bootstrap 中使用 .disabled 类来禁用按钮。

您可以尝试运行以下代码来实现 .disabled 类−

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   <body>
      <div class = "container">
         <h2>Rank of Cricketers</h2>
         <p>The following are the rank of cricketers:</p>
         <button type = "button" class = "btn btn-primary">Enabled</button>
         <button type = "button" class = "btn btn-primary disabled">Disabled</button>
      </div>
   </body>
</html>

更新于:12-6 月-2020

超过 1.3 万次浏览

开启您的 职业 生涯

完成课程并获得认证

开始学习
广告