SVGScriptElement: href-Eigenschaft

Baseline Widely available

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

Die schreibgeschützte href-Eigenschaft des SVGScriptElement-Interfaces spiegelt das href- oder xlink:href- Veraltet -Attribut des gegebenen <script>-Elements wider.

Wert

Ein SVGAnimatedString-Objekt.

Beispiele

Zugriff auf die href-Eigenschaft

html
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200">
  <script id="myScript" href="script.js"></script>
</svg>
js
const scriptElement = document.getElementById("myScript");

// Access the href property
console.log(scriptElement.href.baseVal); // Output: "script.js"

Spezifikationen

Specification
Scalable Vector Graphics (SVG) 2
# __svg__SVGURIReference__href

Browser-Kompatibilität

BCD tables only load in the browser