método jQuery callbacks.lock()

El método callbacks.lock() en jQuery se usa para bloquear una lista de devolución de llamadas en el estado.

Sintaxis:

callbacks.lock()

Valor devuelto: este método devuelve el objeto de devolución de llamada al que está adjunto.

Ejemplo 1: este ejemplo primero agrega y activa la función, luego bloquea la lista de devoluciones de llamada y luego nuevamente agrega y activa la función.

<!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.lock() method
    </p>
      
    <button onclick="Geeks();">
        click here
    </button>
      
    <p id="GFG_DOWN"></p>
  
    <script>
        var el_down = document
                .getElementById("GFG_DOWN");
                  
        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(); 
  
            // Function again added to list
            callbacks.add(func); 
            callbacks.fire("gfg_2");
            el_down.innerHTML = res;
        } 
    </script>
</body>
  
</html>

Producción:

Ejemplo 2: este ejemplo proporciona un botón para bloquear la lista y luego agregar y activar la función para verificar si el método funciona o no.

<!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.lock() method
    </p>
  
    <button onclick="Geeks();">
        click here
    </button>
      
    <button onclick="lock();">
        lock here
    </button>
      
    <p id="GFG_DOWN"></p>
  
    <script>
        var el_down = document
                .getElementById("GFG_DOWN");
  
        var res = "";
        var callbacks = jQuery.Callbacks();
        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>";
            };
  
            callbacks.add(fun); // Adding
            callbacks.fire("GFG_1");
            el_down.innerHTML = res;
        } 
    </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 *