1
4

2 に答える 2

1

単にjQueryの魔法である必要があります。

var $append = $( this );
    $append.find( 'div.left' ).remove();
    $append.find( 'strong' ).contents().unwrap();

$append.appendTo(".creating-wrapper .recipients");
于 2012-12-07T02:00:06.630 に答える
1

これはどう?

$("body").on("click", ".search-results li", function(){
    $(this).find('div.left').remove();
    $(this).find('strong').each(function() {
        $(this).after($(this).text()).remove();
    });
    $(this).appendTo(".creating-wrapper .recipients");
});
于 2012-12-07T02:00:41.730 に答える