在 HTML DOM 中使用 JS 动态获取 SVG <image> 元素的“xlink:href”属性

Getting 'xlink:href' attribute of the SVG <image> element dynamically using JS in HTML DOM

提问人:Green 提问时间:9/14/2012 最后编辑:Green 更新时间:9/14/2012 访问量:16709

问:

我有一个结构:

<div id="div">
    <svg xmlns="http://www.w3.org/2000/svg" version="1.1" id="svg">
        <image x="2cm" y="2cm" width="5cm" height="5cm" id="img" xlink:href="pic.jpg"></image>
    </svg>
</div>

我想获取 url,我需要从最外层的 div 开始,而不是完全从源元素开始:pic.jpg<image>

var div = document.getElementById("div");
var svg = div.getElementsByTagNameNS('http://www.w3.org/2000/svg', 'svg')[0];
var img = svg.getElementsByTagNameNS('http://www.w3.org/2000/svg', 'image')[0];
var url = img.getAttribute('xlink:href');   // Please pay attention I do not use getAttributeNS(), just usual getAttribute()

alert(url);     // pic.jpg, works fine

我的问题是,从 SVG 及其子元素中获取此类属性的正确方法是什么?

因为在我尝试这样做之前,它在 Chrome 中也运行良好(我没有尝试其他浏览器):

var svg = div.getElementsByTagName('svg')[0];   // I do not use NS
var img = svg.getElementsByTagName('image')[0];
var url = img.getAttribute('xlink:href');  // and do not use getAttributeNS() here too

alert(url);     // pic.jpg, works fine

但是当我尝试使用时,我得到了空白结果:getAttributeNS()

var svg = div.getElementsByTagNameNS('http://www.w3.org/2000/svg', 'svg')[0];
var img = svg.getElementsByTagNameNS('http://www.w3.org/2000/svg', 'image')[0];

// Please pay attention I do use getAttributeNS()
var url = img.getAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href'); 

alert(url);     // but I got black result, empty alert window
DOM SVG x链接

评论


答:

29赞 Robert Longson 9/14/2012 #1

正确的用法是getAttributeNS('http://www.w3.org/1999/xlink', 'href');

评论

5赞 grw 9/18/2012
谢谢!这个答案帮助我通过 JavaScript 在我的 SVG 内容中设置图像的 xlink:href 属性。我的代码如下所示: img.setAttributeNS('w3.org/1999/xlink', 'href', 'new.url');其中 new.url 是我要替换原始图像的图像的 URL。
4赞 Robert Longson 10/10/2013
将jquery与SVG一起使用会给您带来很多痛苦,最好避免。