Bootstrap3.3.5官网文档中 按钮的加载状态的代码 点击按钮无反应
<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>