문제

I am working on an app in which i have 5 images and i want to get the Id of the image when touchstart event begins because i want to move those images to a certain position. I am using javascript.

도움이 되었습니까?

해결책

If you use jQuery, and provided that you have touchstart event bound to image

$('img').bind('touchstart', function() {
    var imageId = this.id;    
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top