HTML DOM getAttribute() 方法
JavaScript基础 2022-06-08 11:29:02小码哥的IT人生shichen
HTML DOM getAttribute() 方法
实例
获得链接的 target 属性:
document.getElementsByTagName("a")[0].getAttribute("target");
结果:
_blank
完整实例:
<!DOCTYPE html>
<html>
<body>
请阅读 <a href="http://www.phpcodeweb.com/news/638.html" target="_blank">Attr 对象</a>,
<p id="demo">请点击按钮来显示上面这个链接的 target 属性值。</p>
<button onclick="myFunction()">试一下</button>
<script>
function myFunction()
{
var a=document.getElementsByTagName("a")[0];
document.getElementById("demo").innerHTML=a.getAttribute("target");
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
getAttribute() 方法返回指定属性名的属性值。
提示:如果您希望以 Attr 对象返回属性,请使用 getAttributeNode。
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器均支持 getAttribute() 方法。
语法
element.getAttribute(attributename)
参数
参数 | 类型 | 描述 |
---|---|---|
attributename | 字符串值。 | 必需。需要获得属性值的属性名称。 |
返回值
类型 | 描述 |
---|---|
String | 指定属性的值。 |
技术细节
DOM 版本 | Core Level 1 Element Object |