JQuery捕获或获取当前click事件的事件对象ID
时间:2014-08-12 17:33:35
收藏:0
阅读:176
JQuery捕获或获取当前click事件的事件对象ID
直接上代码:
$(".photoImage").click(function(){
var imageId = $(this).attr("id");
console.log(imageId);
});
评论(0)