如何使用 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>
      <h4>Button Example</h4>
      <div id = "myButtons2" class = "bs-example">
         <button type = "button" class = "btn btn-primary" data-loading-text = "Loading...">
            Primary
         </button>
      </div>
      <script type = "text/javascript">
         $(function () {
            $("#myButtons1 .btn").click(function(){
               $(this).button('toggle');
            });
         });
      </script>
   </body>
</html>

更新时间: 15-6 月-2020

90 个浏览

开启你的 职业生涯

完成课程认证

开始吧
广告