クリックしたときにjqueryを使用.thumb
して別の最後のdivに追加しようとしています.button
これはjquery関数です:
$('.thumb').hover(function() {
$(this).find('.close').fadeIn();
}, function() {
$(this).find('.close').fadeOut();
});
$('.close').click(function() {
$(this).parent().fadeOut('slow');
});
$('.button').click(function() {
$html = '<div class="thumb">';
$html += '<img src="http://findicons.com/files/icons/1979/social/50/wordpress.png" />';
$html += '<div class="close">X</div>';
$html += '</div>';
$('.box').append($html);
});
このコードで私が直面している障害は、追加された div がホバー イベントに従わなかったり、.close
ここで助けていただければ幸いです、ありがとう!