Prototype-element-wrap

提供:Dev Guides
2020年6月23日 (火) 02:07時点におけるMaintenance script (トーク | 投稿記録)による版 (Imported from text file)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
移動先:案内検索

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

このメソッドは、要素を別の要素にラップし、ラッパーを返します。

構文

element.wrap(element, wrapper[, attributes]);

OR

someElement.wrap(wrapper[, attributes]);

戻り値

HTML要素。

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

      <script>
         function showResult() {
            $('test').wrap( $("bold") );
         }
      </script>
   </head>

   <body>
      <p id = "test">Formatted Paragraph</p>
      <b id = "bold">Above Paragraph should be wrapped here....<br/></b>
      <br/>
      <input type = "button" value = "Click" onclick = "showResult();"/>
   </body>
</html>

出力