定义和用法
如果属性是 ID 类型(例如,包含了其所属的元素的标识符),则 isId 属性返回 true,否则返回 false。
兼容性
除了 Internet Explorer 和 Opera浏览器外,其他主流浏览器都支持isId 属性.
语法
attribute.isId
技术细节
返回值: | Boolean, true|false |
---|---|
DOM 版本 | Core Level 3 |
实例
检查属性是否为元素的 ID 属性:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程(web176.com)</title> </head> <body> <p id="demo">单击按钮查看在这个P元素的第一个属性是否是一个ID属性</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); x.innerHTML=x.attributes[0].isId; } </script> <p>注意:Internet Explorer 或者 Opera不支持isId属性。</p> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/domtips/4278.html