第二次点击就不会reset了,什么鬼....
我来说吧。
1.将data-complete-text="Loading finished"改成data-reset-text="确认"。
2.$(function() {
$("#mybutton").click(function(){
$(this).button('loading').delay(1000).queue(function() {
$(this).button('reset');
$(this).dequeue(); }); });});
这样就实现了:确认->loading..->确认 的循环.
解决第二次点击不会重置问题
$(function(){ $("#mybutton").click(function(){ $(this).button('loading').delay(1000).queue( function(){ $(this).button('reset'); $(this).dequeue(); }) }); })