Este método now() en jQuery se usa para devolver un número que representa la hora actual.
Sintaxis:
jQuery.now()
Parámetros: El método now() no acepta ningún parámetro.
Valor devuelto: Devuelve el número que representa la hora actual.
Ejemplo 1: En este ejemplo, el método now() muestra el número de milisegundos con la función innerHTML .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | now() 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 | now() method</h3> <button onclick="geek()">Try it</button> <p id="demo"></p> <script> function geek() { var n = jQuery.now(); document.getElementById("demo").innerHTML = n/3600; } </script> </body> </html>
Salida:
Antes de hacer clic:
Después de hacer clic:
Ejemplo 2: En este ejemplo, el método now() muestra el número de milisegundos con la función de alerta .
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | now() 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 | now() method</h3> <button onclick="geek()">Try it</button> <script> function geek() { var n = jQuery.now(); alert("Number of milliseconds : " + 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