console.log有延迟吗?

时间:2017-05-15 10:50:52

标签: javascript html

TEST

HeadTr.appendChild(CityTd);                            //NodeHead
HeadTr.appendChild(ValueTd);
HeadTr.appendChild(OpTd);
contact.appendChild(HeadTr);


console.log(contact);                                  


for( node in aqiData){                                  //NodeChild
    var Tr = document.createElement('tr');
    var NCityTd = document.createElement('td');
    var NValueTd = document.createElement('td');
    var DelTd = document.createElement('td');
    var Button = document.createElement('button');

    Button.innerHTML = 'del';
    NCityTd.innerHTML = node;
    NValueTd.innerHTML = aqiData[node];

    DelTd.appendChild(Button);
    Tr.appendChild(NCityTd);
    Tr.appendChild(NValueTd);
    Tr.appendChild(DelTd);
    contact.appendChild(Tr);  
}

OUTPUT enter image description here

NodeChild位于console.log之后。

在我看来,console.log只输出NodeHead

为什么console.log输出NodeChild

0 个答案:

没有答案