设置 Bootstrap 按钮的禁用状态


要设置禁用状态,请使用禁用类。

你可以尝试运行以下代码来禁用按钮的状态 −

示例

实际演示

<!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" disabled = "disabled">
         Disabled Button
      </button>
   </body>
</html>

更新于: 12-6-2020

184 次浏览

开启您的 职业生涯

完成课程以获得认证

开始
广告