var oDiv=document.querySelector('div'); var oP=document.createElement('p'); console.log(oP); oP.innerHTML='hello'; oDiv.append(oP);
这里为什么输出不是<p></p>,而是<p>hello</p>呢?
这是把你的节点输出,节点中不是包括内容的嘛
2.1m questions
2.1m answers
60 comments
57.0k users