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


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


jQuery中的deferred.progress()方法用於添加處理程序,這些處理程序將在Deferred對象生成進度通知時調用。

用法:

deferred.progress(progressCallbacks[, progressCallbacks])

參數:

  • progressCallbacks:此參數是一個函數或函數數組,在Deferred生成進度通知時將調用這些參數。
  • progressCallbacks:它是一個可選參數,是一個函數或一組函數,在Deferred生成進度通知時將調用它們。

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

範例1:在本示例中,使用reject()方法調用progress()方法。



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.progress() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
      
    <p id="GFG"></p> 
  
    <script> 
        function Func(val, div) { 
            $(div).append(val); 
        } 
        function Geeks() { 
            var def = $.Deferred(); 
            def.fail(Func); 
            def.progress(Func); 
            def.reject('"Func" is added as ' 
                + 'progressCallbacks using ' 
                + 'progress() method when ' 
                + 'Deferred object is rejected', 
                  '#GFG') 
        }  
    </script> 
</body> 
  
</html>

輸出:

範例2:在此示例中,使用resolve()方法調用progress()方法。

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.progress() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
      
    <p id="GFG"></p> 
  
    <script> 
        function Func(val, div) { 
            $(div).append(val); 
        } 
        function Geeks() { 
            var def = $.Deferred(); 
            def.done(Func); 
            def.progress(Func); 
            def.resolve('"Func" is added as ' 
                + 'progressCallbacks using ' 
                + 'progress() method when ' 
                + 'Deferred object is resolved', 
                  '#GFG') 
        }  
    </script> 
</body> 
  
</html>

輸出:




相關用法


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