2013-01-06 58 views
-1

我有一個表單,它有三個選項和一個提交按鈕。提交後,內容將在後臺加載。使用jquery加載內容時循環遍歷按鈕

我想要發生的是提交按鈕有三種狀態。

  1. 普通按鈕(點擊)題爲「LOAD DATA」提交表單
  2. 淡出和殘疾人,同時加載的內容,標題爲「正在載入」
  3. 變回正常的按鈕(點擊),您可以到標題爲「開始」的新頁面

任何任何想法?

回答

1

就是這樣。首先按鈕說Load Data,然後:

$('#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"}); 
    }); 

});