如何使用 svg.js 从自定义事件访问元素

How to access element from custom event using svg.js

使用 svg.js,如何从自定义事件访问元素?

myCircle.on('someEvent', function(event) {
    var circleX = event.x(); // event.x is not a function
    circleX = event.target.x() // event.x is not a function
    circleX = event.target.x() // event.target.x is not a function
    circleX = this.x()         // this is undefined
});

click活动中使用this.有效,但不能在客户活动中使用this....

有什么想法吗?

要从事件中获取元素,可以使用事件 属性 目标 ...

...
let element = SVG.get(event.target.id);
...