Este método noop() en jQuery es la función vacía cuando el usuario desea pasar una función que no hará nada.
Sintaxis:
jQuery.noop()
Parámetros: El método noop() no acepta ningún parámetro.
Valor devuelto: Devuelve lo indefinido.
Ejemplo 1: en este ejemplo, el método noop() se usa con la función innerHTML .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | noop() 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 | noop() method</h3> <button onclick="geek()">Try it</button> <br><br> <b> Value Return :</b> <br> <p id="demo"></p> <script> function geek() { var n = jQuery.noop(); document.getElementById("demo").innerHTML = n; } </script> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Ejemplo 2: En este ejemplo, el método noop() se usa con la función de alerta .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | noop() 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 | noop() method</h3> <button onclick="geek()">Try it</button> <script> function geek() { var n = jQuery.noop(); alert("Value Return : " + n); } </script> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA