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


CSS CSSStyleDeclaration item()用法及代码示例


item()方法用于通过索引从CSS声明块返回CSS的属性名称。

用法:

style.item(index)

参数:它接受一个参数:


  • index:它是必填参数,其中包含代表CSS属性索引的数字。

返回值:它以字符串形式返回CSS属性的名称。

例:要显示item()方法的用法原理:

<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
    </style> 
</head> 
  
<body> 
    <h1> 
      GeeksforGeeks 
  </h1> 
  
    <p id="p1"
       style="color:green;  
              font-size:20"> 
      item() Method 
  </p> 
  
    <button onclick="myFunction()"> 
        Get CSS property 
    </button> 
  
    <p id="gfg"></p> 
  
    <!-- Script to get the property -->
    <script> 
        function myFunction() { 
            var x = 
                document.getElementById("p1").style; 
            
            var propertyName = x.item(1); 
            document.getElementById("gfg").innerHTML = 
                "Property at index 1 is " + propertyName; 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:

  • 谷歌浏览器
  • Internet Explorer 9.0
  • Firefox
  • Safari
  • Opera


相关用法


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