问问题
2293 次
1 回答
6
href 属性不在 SVG 命名空间中,它在 xlink 命名空间中。目标也在空命名空间中。所以
link.setAttributeNS(svgNS, 'xlink:href', '/?q=striatum')
link.setAttributeNS(svgNS, 'target', '_top')
应该
link.setAttributeNS('http://www.w3.org/1999/xlink', 'xlink:href', '/?q=striatum')
link.setAttribute('target', '_top')
于 2014-03-06T20:02:36.237 回答