Prototype-element-absolutize

提供:Dev Guides
移動先:案内検索

プロトタイプ-absolutize()メソッド

このメソッドは、ページレイアウト内の位置を変更せずに、要素を絶対配置要素に変換します。

構文

element.absolutize();

戻り値

絶対配置されたHTML要素。

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>

      <script>
         function changetoAbs() {
            node = $("firstDiv");
            node.style.fontSize='20px';

           //node.style.position = 'absolute';
            node.absolutize();
            node.style.border = '1px dashed #f00';
            node.style.left = '100px';
         }
      </script>
   </head>

   <body>
      <div id = "firstDiv">
         <p>This is first paragraph</p>
      </div>
      <br/>

      <input type = "button" value = "Make Absolute" onclick = "changetoAbs();"/>
   </body>
</html>

出力