SVG namespaceURI属性返回给定Attribute元素的namespaceURI。
用法:
namespace = attribute.namespaceURI
返回值:此属性返回Attr的namespaceURI。
范例1:
HTML
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<!-- A link around a text -->
<text id="gfg" y="20" x="20">
Example
</text>
<script>
const element =
document.querySelector("#gfg");
console.log(element.namespaceURI);
</script>
</svg>
</body>
</html>
输出:
范例2:
HTML
<!DOCTYPE html>
<html>
<body>
<svg viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<!-- A link around a shape -->
<circle id="gfg" cy="20" cx="20" r="15">
Example
</circle>
<script>
const element = document.querySelector("#gfg");
console.log(element.namespaceURI);
</script>
</svg>
</body>
</html>
输出:
参考: https://developer.mozilla.org/en-US/docs/Web/API/Attr/namespaceURI
相关用法
- HTML DOM namespaceURI用法及代码示例
- SVG RectElement.rx属性用法及代码示例
- SVG RectElement.height属性用法及代码示例
- SVG CircleElement.r属性用法及代码示例
- SVG CircleElement.cy属性用法及代码示例
- SVG EllipseElement.rx属性用法及代码示例
- SVG EllipseElement.ry属性用法及代码示例
- SVG EllipseElement.cy属性用法及代码示例
- SVG LinearGradientElement.x1属性用法及代码示例
- SVG LinearGradientElement.x2属性用法及代码示例
- SVG RectElement.x属性用法及代码示例
- SVG UseElement.x属性用法及代码示例
- SVG UseElement.y属性用法及代码示例
- SVG UseElement.height属性用法及代码示例
- SVG UseElement.width属性用法及代码示例
- SVG RectElement.y属性用法及代码示例
- SVG TextPathElement.startOffset属性用法及代码示例
- SVG LineElement.y1属性用法及代码示例
- SVG LineElement.y2属性用法及代码示例
- SVG EllipseElement.cx属性用法及代码示例
- SVG LineElement.x2属性用法及代码示例
- SVG RectElement.ry属性用法及代码示例
- SVG LineElement.x1属性用法及代码示例
- SVG RectElement.width属性用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG namespaceURI Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。