这里我有一个JSFiddle:
' http://jsfiddle.net/reko91/66m1q9g2/'
我做了一个圆圈的功能。现在在这个函数中我必须选择一个要附加我的圆圈的区域:
var circle = d3.select("#" + area)
.append("svg:circle");
现在画两个圆圈:
createCircle("svg", 100,100,50,"red"); // here i select the SVG - it works
createCircle("canvas", 200,200,50,"green"); // here i select the canvas - doesnt work
当我将圆圈附加到我创建的SVG
时,它可以正常工作,但是当我将其附加到我制作的canvas
时。
我犯了什么愚蠢的错误?