运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The nodeName, nodetype, and nodeValue Properties</h2> <div id="myDIV">This is "myDIV".</div> <p>Node name, type and value of "myDIV"s first child is:</p> <p id="demo"></p> <script> const x = document.getElementById("myDIV").firstChild; let text = ""; text += "Name: " + x.nodeName + "<br>"; text += "Value: " + x.nodeValue + "<br>"; text += "Type: " + x.nodeType; document.getElementById("demo").innerHTML = text; </script> </body> </html>