我想將類添加到具有類'alignleft'的元素。我的代碼:JQuery - 如果元素具有類,則添加類
$(document).ready(function() {
if($('.foto').children().hasClass('alignleft')){
$(this).addClass('animated bounceInLeft');
}
});
它不起作用,我不知道爲什麼。但是,如果我使用$('.foto').children().addClass('animated bounceInLeft');
它將類應用於類'alignleft'的所有子元素。所以問題可能在$(this)
?