为什么getAttributeNS返回null?

Jer*_*yow 3 javascript svg

var svg = document.getElementById('test'),
    use = svg.lastElementChild;

alert(use.getAttributeNS(null, 'x'));
// "200"

alert(use.getAttributeNS('http://www.w3.org/1999/xlink', 'href'));
// "#shape"

alert(use.getAttributeNS('http://foo.io/bar', 'foo'));  
// null - why?
Run Code Online (Sandbox Code Playgroud)
<svg id="test"
     xmlns="http://www.w3.org/2000/svg"
     xmlns:xlink="http://www.w3.org/1999/xlink"
     xmlns:test="http://foo.io/bar">
    <defs>
        <g id="shape">
            <rect x="50" y="50" width="50" height="50" />
            <circle cx="50" cy="50" r="50" />
        </g>
    </defs>
    <use xlink:href="#shape" x="200" y="50" test:foo="bar" />
</svg>
Run Code Online (Sandbox Code Playgroud)

小智 5

查看MDN页面,似乎html5文档中不支持名称空间-https: //developer.mozilla.org/zh-CN/docs/Web/API/Element.getAttributeNS#Example

看来您必须使用 use.getAttribute('test:foo');