原型 - getStyle() 方法



此方法返回元素的给定 CSS 属性值。属性可以采用 CSS 或驼峰命名形式。

所以提供 font-sizefontSize 等效。

语法

element.getStyle( property );

返回值

如果找不到属性集则返回 CSS 属性值或者 NULL。Internet Explorer 返回字面值,而其他浏览器返回计算值。如果元素处于隐藏状态,Safari 将为任何非内联属性返回 null。

示例

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function showResult() {
            var str = $('grandfather').getStyle('margin-left');
            alert("Element left margin is : " + str );
         }
      </script>
      
      <style>
         #grandfather {
            font-size: 12px;
            margin-left: 1em;
         }
      </style>
   </head>
   
   <body>
      <p>Click the button to see the result.</p>
      
      <div id = "grandfather">This is grand father
         <div id = "father"> This is father.
            <div id = "kid">This is kid</div>
         </div>
      </div>
      <br />
      
      <input type = "button" value = "showResult" onclick = "showResult();"/>
   </body>
</html>

输出

prototype_element_object.htm
广告