在Image onload函数中获取上下文

时间:2013-12-30 00:09:14

标签: javascript html5 html5-canvas

我有一个像

这样的Image对象数组
var array = [];

...

array[i].onload = function () {
    ...
}

在onload函数中,我想知道绑定到此函数的Image对象。有没有办法知道这个?

1 个答案:

答案 0 :(得分:0)

您可以将任意参数传递给onLoad。请查看以下示例。

https://gist.github.com/prabindh/8177375