如何为组中的每个 Kinetic.Rect 创建一个点击事件?
假设我有这个:
var bar1 = new Kinetic.Rect({
x: 0,
y: 100,
width: 400,
height: 10,
fill: 'grey',
stroke: 'black',
strokeWidth: 2
});
var bar2 = new Kinetic.Rect({
x: 0,
y: 100,
width: 400,
height: 10,
fill: 'grey',
stroke: 'black',
strokeWidth: 2
});
有没有办法让两个栏都有相同的点击事件?可能使用 jQuery 吗?