2013-06-26 55 views

回答

0

Select all頁面上的圓圈元素:

d3.selectAll("circle") 

從那些使用filter只選擇要刪除的圓圈:

.filter(function(d){ 
    return this.attributes.cx == removeCX && this.attributes.cy == removeCY; }) 

使用remove得到擺脫他們:

.remove() 

這麼說,我想不出,你想使用的SVG圓的實際位置,以擺脫它很多情況下;使用d3,你可能會更好地操作綁定到該圓圈的數據。