原型 - set() 方法
此方法将哈希键的属性设置为值并返回该值。
语法
hash.set(key, value);
返回值
返回哈希的值。
示例
<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( "h.inspect() : " + h.inspect() ); h.set('d', 'orange'); alert( "h.inspect() : " + h.inspect() ); h.set('a', 'kiwi'); alert( "h.inspect() : " + 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
广告