原型 - 可枚举 member() 方法



此方法确定给定对象是否在可枚举或不在可枚举(基于 == 比较运算符)。这是 include() 的便利别名。

语法

Iterator.member(object);

返回值

如果找到给定对象,则返回 true 值,否则返回 false。

示例

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function showResult() {
            alert("$R(1,15).member(10) : " +  $R(1,15).member(10) );
            // Returns true.
         }
      </script>
   </head>

   <body>
      <p>Click the button to see the result.</p>
      <br />
      <br />
      <input type = "button" value = "Result" onclick = "showResult();"/>
   </body>
</html>

输出

prototype_enumerating.htm
广告