我想创建一个可以采用通用 D3 选择的 javascript 函数,并将其副本附加到 SVG 对象。
这是一个最小的工作示例:
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
svg = d3.select("body").append("svg")
.attr("width", 300)
.attr("height", 300);
circle = svg.append("circle")
.attr("cx", 100)
.attr("cy", 100)
.attr("r", 20)
function clone_selection(x, i) {
for (j = 0; j < i; j++) {
// Pseudo code:
// svg.append(an exact copy of x, with all the attributes)
}
}
clone_selection(circle, 5);
</script>
Mike Bostock 说这在这里是不可能的,但那是前一阵子了。
有没有人对如何实现这一点有任何新的想法?请记住,在函数内部,clone_selection
我们不知道 x 中的 svg 元素是什么。