如何使用JavaScript插入元素
原文英文,约100词,阅读约需1分钟。发表于: 。Element.append() or Element.apeendChild(). append is different from appendChild: it can pass not onlyNode object but also strings. we can use innerHTML attribute to insert strings containing...
Element.append()与Element.appendChild()的区别在于,append可以接收字符串和Node对象,而appendChild仅支持Node对象。可以通过innerHTML属性将字符串插入当前Node对象。