當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


jQuery deferred.fail()用法及代碼示例

jQuery中的deferred.fail()方法用於添加拒絕Deferred對象時調用的處理程序。此方法接受一個或多個參數,該參數可以是一個函數或一組函數。回調以添加時的相同順序執行。當Deferred對象被拒絕時,將調用failedCallbacks。

用法:

deferred.fail(failedCallbacks, failedCallbacks )

參數:

  • failedCallbacks:此參數指定一個函數或一組函數,在拒絕Deferred時將調用它們。
  • failedCallbacks:此參數指定可選的附加函數或函數數組,當拒絕Deferred時將調用這些函數。

返回值:此方法返回延遲的對象。

範例1:



html

<!DOCTYPE HTML> 
<html> 
  
<head> 
    <script src= 
"https://code.jquery.com/jquery-3.5.0.js"> 
    </script> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;"> 
        GeeksForGeeks 
    </h1> 
  
    <p> 
        JQuery | deferred.fail() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
      
    <script> 
        function Geeks() { 
            $.get("testingGFG.php") 
                .done(function () { 
                    alert("$.get succeessfully completed!"); 
                }) 
                .fail(function () { 
                    alert("$.get failed!"); 
                }); 
        }  
    </script> 
</body> 
  
</html>


輸出:

在點擊按鈕之前:

單擊按鈕後:

範例2:

html

<!DOCTYPE HTML> 
<html> 
  
<head> 
    <script src= 
"https://code.jquery.com/jquery-3.5.0.js"> 
    </script> 
</head> 
  
<body style="text-align:center;"> 
    <h1 style="color:green;"> 
        GeeksForGeeks 
    </h1> 
  
    <p> 
        JQuery | deferred.fail() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
  
    <p id="GFG_DOWN"></p> 
  
    <script> 
        var el_down = document.getElementById("GFG_DOWN"); 
        function Geeks() { 
            $.get("testingGFG.php") 
                .done(function () { 
                    el_down.innerHTML =  
                        "$.get succeessfully completed"; 
                }) 
                .fail(function () { 
                    el_down.innerHTML = "$.get failed!"; 
                }); 
        }  
    </script> 
</body> 
  
</html>

輸出:




相關用法


注:本文由純淨天空篩選整理自PranchalKatiyar大神的英文原創作品 jQuery deferred.fail() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。