Ladda不旋转只是张贴

时间:2014-03-05 21:57:25

标签: javascript jquery twitter-bootstrap

http://jsfiddle.net/DPZgj基本上就是我正在使用的代码。点击“向左展开”按钮时,它只是发布但不会开始旋转。当我将JavaScript代码更改为:

$(function() {
$('#form-submit').click(function(e){
    e.preventDefault();
    var l = Ladda.create(this);
    l.start();
    $.post("your-url", 
        { data : data },
      function(response){
        console.log(response);
      }, "json")
    .always(function() { l.stop(); });
    return false;
});

正确旋转只是不发布。我错过了什么?

1 个答案:

答案 0 :(得分:0)

您必须将按钮绑定到:

Ladda.bind('.btn.ladda-button');

这是小提琴:http://jsfiddle.net/DPZgj/7/