El método jQuery callbacks.fired() se usa para verificar si las devoluciones de llamada ya se han llamado al menos una vez. Este método devuelve el valor booleano.
Sintaxis:
callbacks.fired()
Parámetros: este método no acepta ningún argumento.
Valor devuelto: este método devuelve un valor booleano.
Ejemplo 1: este ejemplo devuelve verdadero porque el método fire() se ha llamado al menos una vez.
<!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.fired() 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() { // First function to be added to the list var fun1 = function (val) { res = res + "This is function 1 and" + " value passed is " + val + "<br>"; }; // Adding the function 1 callbacks.add(fun1); // Calling with "GFG_1" callbacks.fire("GFG_1"); // Calling callbacks.fired() // method to get true el_down.innerHTML = callbacks.fired(); } </script> </body> </html>
Producción:
Ejemplo 2: este ejemplo devuelve false porque no se ha llamado al método fire().
<!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.fired() 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() { // First function to be added to the list var fun1 = function (val) { res = res + "This is function 1 and" + " value passed is " + val + "<br>"; }; // Adding the function 1 callbacks.add(fun1); // Adding again callbacks.add(fun1); // Calling callbacks.fired() but // This time we will get false el_down.innerHTML = callbacks.fired(); } </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