HTML DOM hasAttribute() 方法
JavaScript基础 2022-06-08 11:29:12小码哥的IT人生shichen
HTML DOM hasAttribute() 方法
实例
检查 button 元素是否有 onclick 属性:
document.getElementsByTagName("BUTTON")[0].hasAttribute("onclick");
结果:
true
完整实例:
<!DOCTYPE html>
<html>
<body>
<p id="demo">请点击按钮来查看 button 元素是否拥有 onclick 属性。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var btn=document.getElementsByTagName("BUTTON")[0];
var x=document.getElementById("demo");
x.innerHTML=btn.hasAttribute("onclick");
}
</script>
<p>Internet Explorer 8 以及更早的版本不支持该方法。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
如果存在指定属性,则 hasAttribute() 方法返回 true,否则返回 false。
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器均支持 hasAttribute() 方法。
注释:Internet Explorer 8 以及更早的版本不支持该方法。
语法
element.hasAttribute(attributename)
参数
参数 | 类型 | 描述 |
---|---|---|
attributename | 字符串值。 | 必需。需要检查是否存在的属性名称。 |
返回值
类型 | 描述 |
---|---|
Boolean | 如果存在该属性,则返回 true,否则返回 false。 |
技术细节
DOM 版本 | Core Level 2 Element Object |