我有一个元素var destination
,我试图在它之前插入多个元素。我使用.before
但我多次使用它,因为我正在移动多个元素。
有没有办法改进这段代码,并一次移动所有元素?我正在移动一个元素moveElement
、它之前的元素,以及其他一些myClass
使用each()
. 任何减少数量的方法destination.before()
destination.before(moveElement.prev());
destination.before(moveElement);
$('div.myClass').each(function(){
destination.before($(this));
});