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


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


getPropertyValue()方法用于返回在声明块中声明的CSS属性的值。

用法:

object.getPropertyValue(propertyname)

参数:它接受一个参数:


  • propertyname:它是必需参数,其中包含一个字符串,该字符串表示要检查的属性的名称。

返回值:它返回一个用于表示属性值的字符串。

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

<html> 
  
<head> 
    <style> 
        body { 
            text-align:center; 
        } 
          
        h1 { 
            color:green; 
        } 
          
        #p1 { 
            color:green; 
            font-size:20; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>GeeksforGeeks</h1> 
  
    <p id="p1"> 
      getPropertyValue() Method 
  </p> 
  
    <button onclick="myFunction()"> 
        Get property value 
    </button> 
  
    <p id="gfg"></p> 
  
    <!-- Script to get the  
         property value-->
    <script> 
        function myFunction() { 
            var x = 
                document.styleSheets[ 
                  0].cssRules[2].style; 
            
            document.getElementById( 
              "gfg").innerHTML = 
                " Value of font-size:" 
            + x.getPropertyValue("font-size"); 
        } 
    </script> 
</body> 
  
</html>

输出:
在单击按钮之前:

单击按钮后:

支持的浏览器:

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


相关用法


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