我正在使用 jcanvas ( http://calebevans.me/projects/jcanvas/ ) 来学习 JavaScript 项目。我有以下代码:
var Board = function($element){
this.place_piece = function(piece){
this.board[piece.position[0]][piece.position[1]] = piece;
$element.drawImage({
source: piece.image,
draggable: true,
layer: true,
x: this.get_coordinates_by_cell(piece.position)[0],
y: this.get_coordinates_by_cell(piece.position)[1],
dragstop: function(layer){
console.log($this)
console.log(layer)
}
});
}
我需要在 dragstop 函数中访问父 Board 对象的方法。但是当我在那里调用 $this 变量时,我得到的是画布......而不是板本身。有什么可做的吗?