// where elements a,b,c are part of the class "example"
element.appendChild(a)
element.appendChild(b)
element.appendChild(c)
ive尝试使用jQuery方法.addClass()并尝试使用for循环附加它们,但是没有运气。有什么建议吗?
答案 0 :(得分:0)
如果我理解正确,那么您有一堆具有相同类的div,并且您希望将它们全部附加到另一个div中吗?
您应该尝试类似
$('.DivsToAppend').appendTo('#MyDivReceiving');
有关jQuery选择器的更多信息:https://www.w3schools.com/jquery/jquery_ref_selectors.asp
有关“ appendTo”方法的更多信息:http://api.jquery.com/appendto/