使用javascript附加到SVG的路径

时间:2013-09-12 17:35:46

标签: javascript svg appendchild

我正在尝试使用javascript将路径元素附加到某个内联svg,但我收到错误:“Uncaught NotFoundError:尝试在不存在的上下文中引用节点” 谁能解释为什么这个javascript无法使用我的HTML?

<body>
    <svg height='500' width='500'></svg>


    <script>
        var svg =  document.getElementsByTagName("svg")[0];
        var pathElement = svg.appendChild("path");
    </script>

</body>

2 个答案:

答案 0 :(得分:2)

appendChild接受一个元素而不是一个字符串,所以你需要的是这样......

var svg = document.getElementsByTagName("svg")[0];
var path = document.createElementNS("http://www.w3.org/2000/svg", "path");

// Use path.setAttribute("<attr>", "<value>"); to set any attributes you want

var pathElement = svg.appendChild(path);

答案 1 :(得分:0)

任何想要在行动中看到它的人经过的工作示例: http://jsfiddle.net/huvd0fju/

HTML

<svg id="mysvg" width="100" height="100">
   <circle class="c" cx="50" cy="50" r="40" fill="#fc0" />
</svg> 

JS

var mysvg = document.getElementById("mysvg");
//uncomment for example of changing existing svg element attributes
/*
var mycircle = document.getElementsByClassName("c")[0];
mycircle.setAttributeNS(null,"fill","#96f");
*/
var svgns = "http://www.w3.org/2000/svg";
var shape = document.createElementNS(svgns, "rect");
shape.setAttributeNS(null,"width",50);
shape.setAttributeNS(null,"height",80);
shape.setAttributeNS(null,"fill","#f00");
mysvg.appendChild(shape);