原型 - remove() 方法



此方法从哈希中移除键并返回其值。自 v1.6.0 起,此方法不可用。

语法

hash.remove(key1, key2...);

返回值

返回合并后的哈希。

示例

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function showResult() {
            var h = new Hash({ a:'apple', b:'banana', c:'coconut' });
            alert("Before removing elements : " + h.inspect() );
            
            // Remove two elements.
            h.remove('a', 'c');
            alert("After removing elements : " + h.inspect() );
         }
      </script>
   </head>

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

输出

prototype_hash_processing.htm
广告