禁用 Bootstrap 按钮


禁用按钮后,颜色会淡化 50%,并且失去渐变。使用 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>
   </head>
   <body>
      <p>The following are some buttons:</p>
      <button type = "button" class = "btn btn-default btn-lg ">
         Default Button
      </button>
      <button type = "button" class = "btn btn-default btn-lg active">
         Active Button
      </button>
      <button type = "button" class = "btn btn-default btn-lg" disabled = "disabled">
         Disabled Button
      </button>
   </body>
</html>

更新时间: 12-6-2020

2K+ 次查看

开启你的 职业生涯

完成课程即可获得认证

开始
广告
© . All rights reserved.