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


jQuery callbacks.remove()用法及代碼示例

jQuery callbacks.remove()方法用於從回調列表中刪除單個回調或一組回調。

句法:

callbacks.remove( callbacks )

參數:

  • callbacks:此參數指定要從回調列表中刪除的一個函數或一組函數。

返回值:此方法返回其附加到的Callbacks對象。

範例1:在此示例中,存在一種刪除方法,用於從列表中刪除函數‘func’。



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 | callbacks.remove() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
  
    <p id="GFG"></p> 
  
    <script> 
        var el_down = document.getElementById("GFG"); 
        var res = ""; 
        var callbacks = jQuery.Callbacks(); 
  
        function Geeks() { 
            var func = function (val) { 
                res = res + "value passed is - " + val; 
            }; 
  
            // Function added to list 
            callbacks.add(func); 
            callbacks.fire("gfg_1"); 
  
            // Removing the func from list 
            callbacks.remove(func); 
              
            // Now This will not work 
            callbacks.fire("gfg_2"); 
            el_down.innerHTML = res; 
        }  
    </script> 
</body> 
  
</html>

輸出:

範例2:本示例提供了一個按鈕,用於從“回調”列表中刪除函數‘fun’。

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 | callbacks.remove() method 
    </p> 
  
    <button onclick="Geeks();"> 
        click here 
    </button> 
      
    <button onclick="remove();"> 
        remove 
    </button> 
      
    <p id="GFG"></p> 
  
    <script> 
        var el_down = document.getElementById("GFG"); 
        var res = ""; 
        var callbacks = jQuery.Callbacks(); 
  
        var fun = function (val) { 
            res = res + "This is function and " 
                + "value passed is " + val + "<br>"; 
        }; 
  
        // Adding function to Callback list 
        callbacks.add(fun); 
          
        // Defining function to remove 
        function remove() { 
            callbacks.remove(fun); 
        } 
          
        function Geeks() { 
            callbacks.fire("GFG_1"); 
            el_down.innerHTML = res; 
        }  
    </script> 
</body> 
  
</html>

輸出:該函數已從回調列表中刪除。




相關用法


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