从touchstart event javascript获取图像ID

时间:2013-02-25 08:54:30

标签: javascript image touchstart

我正在开发一个应用程序,其中我有5个图像,我想在touchstart事件开始时获取图像的Id,因为我想将这些图像移动到某个位置。我正在使用javascript。

1 个答案:

答案 0 :(得分:0)

如果你使用jQuery,并且你提供了绑定到图像的touchstart事件

$('img').bind('touchstart', function() {
    var imageId = this.id;    
});