运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The insertBefore() Method</h2> <ul id="myList"> <li>Coffee</li> <li>Tea</li> </ul> <script> // Create a "li" element: const newNode = document.createElement("li"); // Create a text node: const textNode = document.createTextNode("Water"); // Append text node to "li" element: newNode.appendChild(textNode); // Insert before existing child: const list = document.getElementById("myList"); list.insertBefore(newNode, list.children[0]); </script> </body> </html>