Prototype-element-show

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

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

このメソッドは、要素を表示して返します。

このメソッドは、CSSスタイルシートを介して非表示の要素を表示できません。 これはプロトタイプの制限ではなく、CSS表示プロパティの動作の結果であることに注意してください。

構文

element.show();

戻り値

HTML要素を表示して返します。

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

      <script>
         function hideElement() {
            $('grandfather').hide();
         }
         function showElement() {
            $('grandfather').show();
         }
      </script>
   </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 = "Hide" onclick = "hideElement();"/>
      <input type = "button" value = "Show" onclick = "showElement();"/>
   </body>
</html>

出力