Este método isFunction() en jQuery se usa para determinar si su argumento se puede llamar como una función.
Sintaxis:
jQuery.isFunction( value )
Parámetros: el método isFunction() acepta solo un parámetro que se menciona arriba y se describe a continuación:
- value : Este parámetro es el valor a probar.
Valor devuelto: Devuelve el valor booleano.
Los siguientes ejemplos ilustran el uso del método isNumeric() en jQuery:
Ejemplo 1: en este ejemplo, el método isFunction() verifica un valor para ver si es una función.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | isFunction () method</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | isFunction () method</h3> <b>Check the function() {} is a function or not. </b> <br> <p></p> <script> //function() {} $( "p" ).append("" +$.isFunction(function() {})); </script> </body> </html>
Producción:
Ejemplo 2: en este ejemplo, el método isFunction() también verifica un valor para ver si es una función.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | isFunction () method</title> <script src="https://code.jquery.com/jquery-3.4.1.js"></script> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksForGeeks </h1> <h3>JQuery | isFunction () method</h3> <b>Check the following are the function or not. </b> <br><br> <div>jQuery.isFunction( geeks[ 0 ] ) = <span></span></div> <div>jQuery.isFunction( geeks[ 1 ] ) = <span></span></div> <div>jQuery.isFunction( geeks[ 2 ] ) = <span></span></div> <script> function stub() {} var geeks = [ function() {}, { x:15, y:20 }, null, stub, "function" ]; jQuery.each( geeks, function( i ) { var isFunc = jQuery.isFunction( geeks[ i ]); $( "span" ).eq( i ).text( isFunc ); }); </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA