El método jQuery callbacks.disabled() se utiliza para verificar si la devolución de llamada está deshabilitada o no. Este método devuelve «verdadero» o «falso» según la devolución de llamada.
Sintaxis:
callbacks.disabled()
Valor devuelto: este método devuelve un valor booleano.
Ejemplo 1: este ejemplo desactiva la devolución de llamada y luego llama al método callbacks.disabled() para ver el resultado.
<!DOCTYPE HTML> <html> <head> <title> jQuery callbacks.disabled() method </title> <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 id="GFG_UP"></p> <button onclick="Geeks();"> click here </button> <p id="GFG_DOWN"></p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); el_up.innerHTML = "JQuery | callbacks.disabled() method"; var result = ""; var callbacks = jQuery.Callbacks(); function Geeks() { // First function to be added to the list var fun1 = function (val) { result = result + "This is function 1 and" + " value passed is " + val + "<br>"; }; callbacks.add(fun1); // Adding the function 1 callbacks.fire("GFG_1"); // Calling the function 1 callbacks.disable(); el_down.innerHTML = callbacks.disabled(); } </script> </body> </html>
Producción:
Ejemplo 2: este ejemplo proporciona un botón para deshabilitar las devoluciones de llamada y verificar luego.
<!DOCTYPE HTML> <html> <head> <title> jQuery callbacks.disabled() method </title> <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 id="GFG_UP"></p> <button onclick="Geeks();"> click here </button> <button onclick="disable();"> disable </button> <p id="GFG_DOWN"></p> <script> var el_up = document.getElementById("GFG_UP"); var el_down = document.getElementById("GFG_DOWN"); el_up.innerHTML = "JQuery | callbacks.disabled() method"; var result = ""; var callbacks = jQuery.Callbacks(); function disable() { callbacks.disable(); } function Geeks() { // First function to be added to the list var fun1 = function (val) { result = result + "This is function 1 and" + " value passed is " + val + "<br>"; }; callbacks.add(fun1); // Adding the function 1 callbacks.fire("GFG_1"); // Calling the function 1 el_down.innerHTML = callbacks.disabled(); } </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