在以下函数中,我只按预期获取父对象而不是它们的子对象(或孙子对象):
function nest(n)
{
for(var i=0;i<n.attributes.length;i++){
var item = n.attributes[i];
root.appendChild(item.data);
}
}
nest(me);
如果我像得到孩子和孙子一样使用递归root.appendChild(nest(item.data));
,而不是父母。
我怎样才能得到父母和孩子?