Propiedad URL.port de la API web

La propiedad Web API URL.port se usa para obtener USVString que contiene el número de puerto de la URL.

Sintaxis:

var str = URL.port

Valor devuelto: esta propiedad devuelve un USVString que contiene el número de puerto de la URL.

Ejemplo 1:

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:123/GeeksforGeeks');
 
            console.log("port of current URL is :",
                url.port);
        }
    </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:123/GeeksforGeeks');
 
            a = document.getElementById("abc");
 
            a.innerHTML = "port of current URL is : "
                + url.port;
        }
    </script>
</body>
 
</html>

Producción:

Navegadores compatibles:

  • safari10
  • Ópera 19
  • cromo 32
  • Borde 13
  • Firefox 22

Publicación traducida automáticamente

Artículo escrito por taran910 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *