在Google Chrome中更改xlink:href属性

时间:2014-09-20 13:49:56

标签: javascript image google-chrome svg

我想在SVG-中加载图像文件。 它在Firefox和IE中运行良好,但由于某些原因不适用于Chrome。

svgItem.setAttribute("xlink:href", "http://link/to.png");

是否有一些工作空间?

1 个答案:

答案 0 :(得分:0)

setAttributeNS执行作业!

svgItem.setAttributeNS("http://www.w3.org/1999/xlink","xlink:href", "http://link/to.png");