El url.hash es una interfaz de programación de aplicaciones incorporada de clase URL dentro del módulo url que se usa para obtener y configurar la parte del fragmento de la URL.
Sintaxis:
url.hash
Valor de retorno: obtiene y establece la parte del fragmento de la URL.
Los siguientes programas ilustran el uso del método url.hash :
Ejemplo 1:
Javascript
// node program to demonstrate the // url.hash API as Setter // creating and initializing myURL const myURL = new URL('https://example.org/foo#ram'); // Display href value of myURL before change console.log("Before Change"); console.log(myURL.href); // assigning fragment portion // using hash console.log(); myURL.hash = 'rahim'; // Display href value of myURL after change console.log("After Change"); console.log(myURL.href);
Salida :
Before Change https://example.org/foo#ram After Change https://example.org/foo#rahim
Ejemplo 2:
Javascript
// node program to demonstrate the // url.hash API as Getter // creating and initializing myURL const myURL = new URL('https://example.org/foo#ram'); // getting the fragment portion // using hash const hash = myURL.hash; // Display hash value console.log(hash);
Producción:
#ram
NOTA : El programa anterior se puede ejecutar mediante el comando node myapp.js .
Referencia:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hash
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA