运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>HTML DOM Attributes</h1> <h2>The isId Property</h2> <p>Is the first attribute an id? The answer is:</p> <p id="demo"></p> <script> const element = document.getElementById("demo"); const answer = element.attributes[0].isId; element.innerHTML = answer; </script> <p>The isId property is no longer supported in any browsers.</p> <p>The isId property always returns indefined.</p> </body> </html>