运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Document Object</h1> <h2>The createDocumenFragment() Method</h2> <p>Add array items to an empty list:</p> <ul id="myList"> </ul> <script> const fruits = ["Banana", "Orange", "Mango"]; // Create a document fragment: const dFrag = document.createDocumentFragment(); for (let x in fruits) { const li = document.createElement('li'); li.textContent = fruits[x]; dFrag.appendChild(li); } // Add fragment to a list: document.getElementById('myList').appendChild(dFrag); </script> </body> </html>