Location: port Eigenschaft

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

Die port-Eigenschaft des Location-Interfaces ist ein String, der die Portnummer der URL enthält, oder der leere String, wenn der Port der Standardwert für das Protokoll ist.

Hinweis: Wenn das Location-Objekt auf eine URL verweist, die keine explizite Portnummer enthält (z. B. https://localhost) oder eine Portnummer enthält, die der Standard-Portnummer entspricht, die zum Protokollteil der URL gehört (z. B. https://localhost:443), dann wird die port-Eigenschaft der leere String sein: ''.

Wert

Ein String.

Beispiele

js
// Assume current page is at https://developer.mozilla.org/en-US/docs/Location/port
const result = location.port; // Returns:''
js
// Assume another page is at https://developer.mozilla.org:8888/en-US/docs/Location/port
const result = location.port; // Returns:'8888'

Spezifikationen

Specification
HTML Standard
# dom-location-port-dev

Browser-Kompatibilität

BCD tables only load in the browser