Prototype-element-match

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

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

このメソッドは、要素が指定されたCSSセレクターと一致するかどうかをチェックします。

構文

element.match(selector);

戻り値

ブール値を返します。 一致が見つかった場合は_true_を返し、そうでない場合は_false_を返します。

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

      <script>
         function showResult() {
            if( $('fruits').match('ul') ) {
            alert( " $('fruits').match('ul') returns true " );
            } else {
               alert( " $('fruits').match('ul') returns false " );
            }

            if( $('mcintosh').match('li#mcintosh.yummy') ) {
               alert("$('mcintosh').match('li#mcintosh.yummy') returns true");
            } else {
               alert("$('mcintosh').match('li#mcintosh.yummy') returns false");
            }

            if( $('fruits').match('p') ) {
               alert( " $('fruits').match('p') returns true " );
            } else {
               alert( " $('fruits').match('p') returns false " );
            }
         }
      </script>
   </head>

   <body>
      <p>Click the button to see the result.</p>

      <ul id = "fruits">
         <li id = "apples">
            <ul>
               <li id = "golden-delicious">Golden Delicious</li>
               <li id = "mutsu" class = "yummy">Mutsu</li>
               <li id = "mcintosh" class = "yummy">McIntosh</li>
               <li id = "ida-red">Ida Red</li>
            </ul>
         </li>
      </ul>
      <br/>

      <input type = "button" value = "Show Result" onclick = "showResult();"/>
   </body>
</html>

出力