我在HTML5文档中有一个内联SVG,并希望使用jQuery(或者如果需要的话,还可以添加纯JavaScript)。
我知道如何添加矩形,圆形或其他形式,但我还没有重用现有的。
这是对jsFiddle的测试:http://jsfiddle.net/nhoizey/uDVbn/
SVG:
<svg width="300" height="300">
<symbol id="piece"><circle cx="50" cy="50" r="40" fill="green" /></symbol>
<circle cx="70" cy="90" r="20" stroke="blue" fill="white" />
</svg>
JavaScript:
// it works!
var rect = $(document.createElementNS("http://www.w3.org/2000/svg","rect"))
.attr({
x: 10,
y: 30,
width: 50,
height: 70,
stroke: "red",
fill: "white"
});
$("svg").append(rect);
// it doesn't work
var newPiece = $(document.createElementNS("http://www.w3.org/2000/svg","use"))
.attr({
"xlink:href": "#piece",
transform: "translate(100, 100)"
});
$("svg").append(newPiece);
我知道有一个jQuery SVG插件,但希望尽可能保持它。
答案 0 :(得分:4)
添加href属性的正确方法是使用setAttributeNS。
useElement.setAttributeNS("http://www.w3.org/1999/xlink", 'href', '#piece');