美文网首页
bootstrap 按钮loading效果

bootstrap 按钮loading效果

作者: yundGo | 来源:发表于2016-11-20 20:31 被阅读0次
<button type="button" id="myButton" data-loading-text="Loading..." class="btn btn-primary" autocomplete="off">
  Loading state
  </button>
<script>
  $('#myButton').on('click', function () {
    var $btn = $(this).button('loading')    // business logic...    $btn.button('reset')
  })
</script>

相关文章

网友评论

      本文标题:bootstrap 按钮loading效果

      本文链接:https://www.haomeiwen.com/subject/ivyypttx.html