当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM getAttribute()用法及代码示例


DOM getAttribute()方法用于获取元素的属性值。通过指定属性的名称,它可以获得该元素的值。要从非标准属性获取值,我们可以使用getAttribute()方法。

用法:它返回包含属性值的字符串。

Object.getAttribute(attributename)

范例1:


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM getAttribute() Method </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;width:50%;">  
            GeeksForGeeks  
        </h1> 
  
        <h2>DOM getAttribute() Method </h2> 
        <br> 
        <button id="button" onclick="geeks()"> 
            Submit 
        </button> 
        <p id="gfg"></p> 
  
        <script> 
            function geeks() { 
                var rk = 
                    document.getElementById("button").getAttribute("onClick"); 
                    document.getElementById("gfg").innerHTML = rk; 
            } 
        </script> 
  
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

范例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM getAttribute() Method </title> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;width:50%;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM getAttribute() Method </h2> 
        <a id="gfg" href="www.geeksforgeeks.com"> 
          Geeksforgeeks 
        </a> 
        <br> 
        <br> 
        <button id="button" onclick="geeks()"> 
            Submit 
        </button> 
        <br> 
        <p id="rk"></p> 
  
        <script> 
            function geeks() { 
                var rk = 
                    document.getElementById("gfg").getAttribute("href"); 
                    document.getElementById("rk").innerHTML = rk; 
            } 
        </script> 
  
    </center> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM getAttribute()方法支持的浏览器:

  • 谷歌浏览器15.0
  • Internet Explorer 11.0
  • Firefox 15.0
  • Opera 15.0
  • Safari 6.0


相关用法


注:本文由纯净天空筛选整理自bestharadhakrishna大神的英文原创作品 HTML | DOM getAttribute() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。