Prototype - setStyle() 方法



此方法修改元素的 CSS 样式属性。样式作为属性值对的哈希值传递,其中属性以其大写形式指定。

语法

element.setStyle(styles);

返回值

返回一个 HTML 元素。

示例

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function setColor() {
            $('test').setStyle({
               backgroundColor: '#900',
               fontSize: '12px'
            });
         }
      </script>
   </head>

   <body">
      <p id = "test">Click the button to see the result.</p>
      <input type = "button" value = "Click" onclick = "setColor();"/>
   </body>
</html>

输出

prototype_element_object.htm
广告