Método JQuery callbacks.locked()

El método callbacks.locked() en jQuery se usa para responder si la lista de devoluciones de llamada se ha bloqueado o no.

Sintaxis:

callbacks.locked()

Valor devuelto: este método devuelve un valor booleano .

Ejemplo 1: en este ejemplo, las devoluciones de llamada se bloquearon, por lo que el método devuelve verdadero.

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");
  
            // Locking the callback list
            callbacks.lock();
              
            // Checking using this method
            el_down.innerHTML = callbacks.locked();
        } 
    </script>
</body>
  
</html>

Producción:

Ejemplo 2: este ejemplo proporciona un botón para bloquear la lista y luego llamar al método para ver el resultado.

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

Producción:

Publicación traducida automáticamente

Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *