var oDiv=document.querySelector('div');
var oP=document.createElement('p');
console.log(oP);
oP.innerHTML='hello';
oDiv.append(oP);
这里为什么输出不是<p></p>,而是<p>hello</p>呢?
手掌心
相关分类