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