的附加重複我想創建,可以採取通用D3選擇和附加的重複它到SVG對象JavaScript函數。D3:選擇
這裏有一個最低工作例如:
<!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>
邁克·博斯托克說,這是不可能的here但是這是一個而回。
有沒有人有任何新的想法如何實現?請記住,在函數clone_selection
中,我們不知道x中的svg元素是什麼。
您是否在尋找類似['cloneNode'](http://www.w3schools.com/jsref/met_node_clonenode.asp)? –
你需要一個真正的克隆,還是
感謝您的評論。雖然這些都不適用於通用的D3選擇。關於這個(這裏)有更多的對話(https://github.com/mbostock/d3/pull/732#issuecomment-7390693),但我猜想,Mike Bostock提到的selection.clone()方法尚未實現。 – LondonRob