请告诉我如何在第三方js或jquery的帮助下获取特定图像或特定图像ID 我的意思是说 在画布中有一个数组形式的图像,并希望在特定图像中添加一些警报事件..
For Eg..
function draw() {
var ctx = document.getElementById('canvas').getContext('2d'),
img, i, image_array = [];
image_array.push("http://sstatic.net/so/img/logo.png");
image_array.push("http://www.google.com/intl/en_ALL/images/logo.gif");
image_array.push("http://blog.jimdo.com/wp-content/uploads/2014/01/tree-247122.jpg");
image_array.push("http://chennaionline.com/images/gallery/2013/August/20130622091747/Raja-Rani-Latest-Movie-Stills-Photos-Images-20.jpg");
// ...
for (i = 0; i < image_array.length; i++) {
img = new Image();
img.src = image_array[i];
img.onload = (function(img, i){ // temporary closure to store loop
return function () { // variables reference
ctx.drawImage(img,i*img.width,i*img.height);
}
})(img, i);
}
}
现在我想在上添加警报事件 特定的图像(logo.gif)。所以你能告诉我 如何获取并在此特定图像上添加事件.. **