La propiedad HTML DOM Location Port devuelve o establece el número de puerto de la URL actual.
Sintaxis:
- Obtenga la propiedad del puerto:
- Establezca la propiedad del puerto:
El valor de la propiedad:
- Una string, para ser asignada como puerto
Valor devuelto:
- Una string, que representa el número de puerto de una URL.
Ejemplos:
html
<!DOCTYPE html> <html> <body> <h2>GeeksforGeeks</h2> <p id="demo"></p> <p><b>Note: </b>If the port number is default (80 for http and 443 for https), most browsers will display 0 or nothing. </p> <script> const url = document.createElement('a'); url.setAttribute('href', 'http://example.com:12345/gfg'); <!-- accessing "url.port". --> window.alert("The URL port number of the current page is: " + url.port); </script> </body> </html>
Producción :
Navegadores compatibles:
- Google cromo 1
- Borde 12
- explorador de Internet 3
- Firefox 1
- Ópera 12.1
- Safari 1