我有一个表单,上面有三个选项,还有一个提交按钮。提交时,内容将在后台加载。
我想要发生的是让提交按钮有三种状态。
任何想法?
答案 0 :(得分:1)
像这样的东西。首先你的按钮显示加载数据,然后:
$('#button').click(function(){
$(this).addClass("Loading");
$.ajax({
url: "test.html",
context: document.body
}).done(function() {
$("#button").removeClass("Loading");
$("#button").addClass("DoneStart");
$("#button").click(function(){window.location.href = "whatever.html"});
});
});