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


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


jQuery中的deferred.catch()方法用於添加拒絕該延遲對象時要調用的處理程序。

用法:

deferred.catch(failedFilter)

參數:

  • failedFilter:此參數指定拒絕延遲對象時要調用的函數。

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

範例1:



<!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.catch() method 
    </p> 
      
    <button onclick="Geeks();"> 
        click here 
    </button> 
      
    <script> 
        function Geeks() { 
            $.get("testingGFG.php") 
                .then(function () { 
                    alert( 
            "$.get successfully completed!"); 
                }) 
                .catch(function () { 
                    alert("$.get failed!"); 
                }); 
        }  
    </script> 
</body> 
  
</html>

輸出:
在點擊按鈕之前:

單擊按鈕後:

範例2:

<!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.catch() 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") 
                .then(function () { 
                    el_down.innerHTML =  
                        "$.get succeessfully completed"; 
                }) 
                .catch(function () { 
                    el_down.innerHTML = "$.get failed!"; 
                }); 
        }  
    </script> 
</body> 
  
</html> 

輸出:




相關用法


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