定义和用法
getAttribute() 方法通过名称获取属性的值。
提示:如果你想返回属性请使用 getAttributeNode 方法。
所有主要浏览器都支持 getAttribute() 方法
语法
element.getAttribute(attributename)
参数
参数 | 类型 | 描述 |
---|---|---|
attributename | String | 必须。你想获取的属性值。 |
返回值
类型 | 描述 |
---|---|
String | 指定属性值 |
技术细节
DOM 版本 | Core Level 1 Element Object |
---|
实例
获取链接的 target 属性值:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Web176教程网(web176.com)</title> </head> <body> 读取 <a href="dom_obj_attributes.php" target="_blank">Attr 对象</a>. <p id="demo">单击按钮以显示上述链接的目标属性的值</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var a=document.getElementsByTagName("a")[0]; document.getElementById("demo").innerHTML=a.getAttribute("target"); } </script> </body> </html>
作者:terry,如若转载,请注明出处:https://www.web176.com/javascriptbook/domtips/4385.html