BootWiki教程网
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 按钮(Button)插件方法</title> <link href="//cdn.staticfile.net/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> <script src="//cdn.staticfile.net/jquery/2.1.1/jquery.min.js"></script> <script src="//cdn.staticfile.net/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <h2>点击每个按钮查看方法效果</h2> <h4>演示 .button('toggle') 方法</h4> <div class="bs-example" id="myButtons1"> <button class="btn btn-primary" type="button">原始</button> </div> <h4>演示 .button('loading') 方法</h4> <div class="bs-example" id="myButtons2"> <button class="btn btn-primary" data-loading-text="Loading..." type="button">原始 </button> </div> <h4>演示 .button('reset') 方法</h4> <div class="bs-example" id="myButtons3"> <button class="btn btn-primary" data-loading-text="Loading..." type="button">原始 </button> </div> <h4>演示 .button(string) 方法</h4> <button class="btn btn-primary" data-complete-text="Loading finished" id="myButton4" type="button">请点击我 </button> <script type="text/javascript"> $(function () { $("#myButtons1 .btn").click(function(){ $(this).button('toggle'); }); }); $(function() { $("#myButtons2 .btn").click(function(){ $(this).button('loading').delay(1000).queue(function() { }); }); }); $(function() { $("#myButtons3 .btn").click(function(){ $(this).button('loading').delay(1000).queue(function() { $(this).button('reset'); }); }); }); $(function() { $("#myButton4").click(function(){ $(this).button('loading').delay(1000).queue(function() { $(this).button('complete'); }); }); }); </script> </body> </html>
运行结果