var oDiv=document.querySelector('div'); var oP=document.createElement('p'); console.log(oP); oP.innerHTML='hello'; oDiv.append(oP);这里为什么输出不是<p></p>,而是<p>hello</p>呢?
添加回答
举报
0/150
提交
取消