开发者

How to turn element into jQuery selector?

How to turn the event.currentTarget into jQuery object or something like that so I could then use jQuery's addClass method on the object? I know I could just do like: event.currentTarget.className += ' .class', but I was wondering how to work with the event target with jQuery.

$('.class').click(function(event) {
    Class.down($(this).parent().prev().attr('alt'));
    Class.style($(event.curr开发者_C百科entTarget));
});


$(event.currentTarget).addClass("classname");
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜