使用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>