标签: javascript kineticjs
我需要捕获被拖动的形状的“dragend”事件以更新该形状的属性调色板。我已尝试过下面的代码,但此功能仅在创建形状时触发,而不是在最后拖动时触发。
box.on('dragend', alert("drag end"))
答案 0 :(得分:0)
Kinetic node.on方法将函数声明作为其第二个参数。
circle1.on("dragend",function(){alert("dragend")});