我一直在尝试使用Crafty.js构建游戏。我有一个用作按钮的图像,一旦用户点击它,他将被引导到下一页。但是,由于某些原因,鼠标单击不是正在发射。有什么想法吗?
Crafty.scene('Main', function () {
Crafty.background("url('images/homeBackground.jpg')");
Crafty.e('2D, DOM, Mouse, next').attr({ //next is the image
x: 600,
y: 600,
w: 100,
h: 50
}).bind('click', function (e) {
alert("Here?"); //this isn't firing
});
});