Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有某种可能性,如何实现,移动了哪个对象?例如,如果我在画布上有 5 个对象并且我会移动一个对象,那么是否有任何关于自任何时候以来发生了什么变化的信息?谢谢
附加 dragend 处理函数,其中事件变量有 targetNode,即发生拖动事件的节点。
node.on('dragend', function (event) { console.log('dragged node: ' + event.targetNode); }