运行 ❯
获取您
的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Attributes</h1> <h2>The getNamedItem() Method </h2> <img id="light" src="pic_bulbon.gif" width="100" height="180"> <p>The value of the scr attribute is:</p> <p id="demo"></p> <script> const nodeMap = document.getElementById("light").attributes; let value = nodeMap.getNamedItem("src").value; document.getElementById("demo").innerHTML = value; </script> </body> </html>