La propiedad Web API URL.password devuelve un USVString que contiene la contraseña especificada antes del nombre de dominio de la URL. Un USVString es una secuencia de valores escalares Unicode.
Sintaxis:
var str = URL.password
Valor de retorno: esta propiedad devuelve un USVString que contiene la contraseña especificada antes del nombre de dominio de la URL.
Ejemplo 1:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <button onclick="get()" x='15' y='30'> Click on Me! </button> <script type="text/javascript"> function get() { var url = new URL( 'https://password:gfg@www.geeksforgeeks.org/href#ExampleHash'); console.log("password of current URL is :", url.password); } </script> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <div id="abc"></div> <button onclick="get()" x='15' y='30'> Click on Me! </button> <script type="text/javascript"> function get() { var url = new URL( 'https://password:gfg@www.geeksforgeeks.org/href#ExampleHash'); a = document.getElementById("abc"); a.innerHTML = "password of current URL is : " + url.password; } </script> </body> </html>
Producción:
Navegadores compatibles:
- safari10
- Ópera 19
- cromo 32
- Borde 12
- Firefox 26