aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/api/url/port/index.html
blob: fea61df62a5e270b9588c0abcdcf80e80ed48f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
---
title: URL.port
slug: Web/API/URL/port
translation_of: Web/API/URL/port
---
<div>{{ApiRef("URL API")}}</div>

<p>La propiedad <strong><code>port</code></strong> de la interfaz {{domxref("URL")}} es un {{domxref("USVString")}} que contiene el número de puerto de la URL. Si la URL no contiene un número de puerto explícito, se establecerá <code>''</code>.</p>

<p>{{AvailableInWorkers}}</p>

<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox"><em>string</em> = <em>object</em>.port;
<em>object</em>.port = <em>string</em>;
</pre>

<h3 id="Valor">Valor</h3>

<p>Un {{domxref("USVString")}}.</p>

<h2 id="Ejemplos">Ejemplos</h2>

<pre class="brush: js">var url = new URL('<span class="message-body-wrapper"><span class="message-flex-body"><span class="devtools-monospace message-body"><span class="cm-string">https://mydomain.com:80/svn/Repos/</span></span></span></span>');
var result = url.port; // Devuelve:'80'
</pre>

<h2 id="Especificaciones">Especificaciones</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Especificación</th>
   <th scope="col">Estado</th>
   <th scope="col">Comentario</th>
  </tr>
  <tr>
   <td>{{SpecName('URL', '#dom-url-port', 'URL.port')}}</td>
   <td>{{Spec2('URL')}}</td>
   <td>Definición inicial.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidad_del_navegador">Compatibilidad del navegador</h2>

<div class="hidden">La tabla de compatibilidad en esta página se genera a partir de datos estructurados. Si desea contribuir con los datos, consulte https://github.com/mdn/browser-compat-data y envíenos una solicitud de extracción.</div>

<p>{{Compat("api.URL.port")}}</p>

<h2 id="Ver_también">Ver también</h2>

<ul>
 <li>La interfaz {{domxref("URL")}} a la que pertenece.</li>
</ul>