zoukankan      html  css  js  c++  java
  • 吴裕雄 Bootstrap 前端框架开发——Bootstrap 按钮:禁用状态

    <!DOCTYPE html>
    <html>
        <head>
            <meta charset="utf-8"> 
            <title>Bootstrap 实例 - 按钮禁用状态</title>
            <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">  
            <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
            <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
        </head>
        <body>
    
            <p>
                <button type="button" class="btn btn-default btn-lg">默认按钮</button>
                <button type="button" class="btn btn-default btn-lg" disabled="disabled">禁用按钮</button>
            </p>
            <p>
                <button type="button" class="btn btn-primary btn-lg ">原始按钮</button>
                <button type="button" class="btn btn-primary btn-lg" disabled="disabled">禁用的原始按钮</button>
            </p>
            <p>
                <a href="#" class="btn btn-default btn-lg" role="button">链接</a>
                <a href="#" class="btn btn-default btn-lg disabled" role="button">禁用链接</a>
            </p>
            <p>
                <a href="#" class="btn btn-primary btn-lg" role="button">原始链接</a>
                <a href="#" class="btn btn-primary btn-lg disabled" role="button">禁用的原始链接</a>
            </p>
    
        </body>
    </html>

  • 相关阅读:
    流程控制之while循环
    流程控制之case语句
    流程控制之if判断
    元字符
    基本数据类型与值操作
    变量
    shell 基础
    node系列---【node连接数据库步骤解析】
    node系列--【 DML语句对数据库的增删改查】
    node系列--【express生成器安装及第三方中间件安装】
  • 原文地址:https://www.cnblogs.com/tszr/p/10888875.html
Copyright © 2011-2022 走看看