如何克隆具有多个<a href="#">Barbara is so nice</a>
元素的列表的锚 html 值并将其附加到 div 容器。我能够克隆.counter
元素并将其附加到容器中,但不能使用锚点。
这是我的js代码:
$(window).load(function(){
$('.ordered-list li a').on("click", function() {
var button = $(this);
$('.overlay').fadeIn('slow',function(){
button.find('.user-comment-list').clone().fadeIn(1000).appendTo('.overlay-content-inner');
button.find('.counter').clone().appendTo('.overlay-title-content');
});
});
$('.icon-remove').click(function(){
$('.overlay').fadeOut('slow');
$('.overlay-content-inner, .overlay-title-content').empty();
});
});