zoukankan      html  css  js  c++  java
  • Bootstrap_Javascript_按钮插件

    一 . 加载状态按钮

    HTML:

    <button class="btnbtn-primary" data-loading-text="正在加载中,请稍等..." type="button" id="loaddingBtn">加载
    </button>

    JS:

    $(function(){
        $("#loaddingBtn").click(function () {
            $(this).button("loading");
          });
    });

    二 . 模拟单选择按钮

    <div class="btn-group" data-toggle="buttons">
        <label class="btn btn-primary">
            <input type="radio" name="options" id="options1"></label>
        <label class="btn btn-primary">
            <input type="radio" name="options" id="options2"></label>
        <label class="btn btn-primary">
            <input type="radio" name="options" id="options3">未知
        </label>
    </div>

    三 . 模拟复选按钮

    <div class="btn-group" data-toggle="buttons">
        <label class="btn btn-primary">
            <input type="checkbox" name="options" id="options1">电影
        </label>
        <label class="btn btn-primary">
            <input type="checkbox" name="options" id="options2">音乐
        </label>
        <label class="btn btn-primary">
            <input type="checkbox" name="options" id="options3">游戏
        </label>
        <label class="btn btn-primary">
            <input type="checkbox" name="options" id="options4">摄影
        </label>
    </div>

    四 . JavaScript按钮用法

    HTML:

    <button type="button" data-toggle="button" class="btn btn-primary" id="mybutton" data-complete-text="Loading finished" >确认</button>

    JS:

     $(function() {
          $("#mybutton").click(function(){
             $(this).button('loading').delay(1000).queue(function() {
                $(this).button('complete');
             });        
          });

  • 相关阅读:
    Hibernate总结(二)---hibernate中的各种映射
    调度子系统7_负载均衡(四)
    (网络层: 二 ) 网络层提供的服务(基于无连接的服务)
    我的2013——一名计算机教师的高开低走
    文艺小青年
    图解RabbitMQ
    解决Mac下idea运行速度慢
    较主流的消息队列的比较与选型
    Ubuntu下RabbitMQ安装
    linux守护进程与&的区别
  • 原文地址:https://www.cnblogs.com/Ryan344453696/p/5017604.html
Copyright © 2011-2022 走看看