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;
});
正确旋转只是不发布。我错过了什么?