Questa traduzione è incompleta. Collabora alla traduzione di questo articolo dall’originale in lingua inglese.
La proprietà URLUtils
.href
è un DOMString
che contiene l'URL.
Sintassi
string = object.href; object.href =
string;
Esempi
// Let's an <a id="myAnchor" href="https://developer.mozilla.org/en-US/URLUtils.href"> element be in the document var anchor = document.getElementByID("myAnchor"); var result = anchor.href; // Returns:'https://developer.mozilla.org/en-US/URLUtils.href'
Specificazioni
Specification | Status | Comment |
---|---|---|
URL The definition of 'URLUtils.href' in that specification. |
Living Standard | Initial definition. |
Compabilità dei Browser
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported [1] | 22 (22) [1] | Not supported [1] | Not supported [1] | Not supported [1] |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | Not supported [1] | Not supported [1] | 1.0 (1.9.1) [1] | Not supported [1] | Not supported [1] | Not supported [1] |
[1] Though not grouped in a single abstract interface, this method is directly available on the interfaces that implement it, if this interface is supported.
Vedi anche
- The
URL
interface it belongs to.