原型 - 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>

輸出

prototype_element_object.htm
廣告