var str = URL.pathname
Valor de retorno: esta propiedad
aquí no hay una ruta establecida para la URL, por lo que devolverá solo /.
Ejemplo 1: no hay una ruta establecida para la URL, por lo que solo devolverá /
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <button onclick="get()"> Click on Me! </button> <script type="text/javascript"> function get() { var url = new URL( 'https://www.geeksforgeeks.org'); // There is no path for the URL, // so it will return only / console.log("pathname of current URL is :", url.pathname); } </script> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <body> <h1>GeeksforGeeks</h1> <div id="abc"></div> <br><br> <button onclick="get()"> Click on Me! </button> <script type="text/javascript"> function get() { var url = new URL( 'https://www.geeksforgeeks.org/GeeksforGeeks'); a = document.getElementById("abc"); a.innerHTML = "pathname of current URL is : " + url.pathname; } </script> </body> </html>
Producción:
Navegadores compatibles:
- Safari
- Ópera
- Cromo
- Borde
- Firefox