我正在使用圆形对象,我需要保存翻译函数值。例如
circle3 = container.append("circle")
.attr("transform", "translate(" + 80 + "," + 365 + ")")
.attr("r", 10)
.attr("fill", "gray");
circle2 = container.append("circle")
.attr("transform", "translate(" + 80+ "," + 455+ ")")
.attr("r", 10)
.attr("fill", "gray");
圆形物体是可拖动的形式。如何将他们的新翻译值(我的意思是将在拖动后更新)注册到变量或数组。有没有方法提供这些值?
谢谢,