- Prototype 教程
- Prototype - 首页
- Prototype - 简要概述
- Prototype - 实用功能
- Prototype - 实用方法
- Prototype - 元素对象
- Prototype - 处理数字
- Prototype - 处理字符串
- Prototype - 处理数组
- Prototype - 处理哈希
- Prototype - 基础对象
- Prototype - 模板化
- Prototype - 枚举
- Prototype - 事件处理
- Prototype - 表单管理
- Prototype - JSON 支持
- Prototype - AJAX 支持
- Prototype - 表达范围
- Prototype - 周期性执行
- Prototype 实用资源
- Prototype - 速查指南
- Prototype - 实用资源
- Prototype - 讨论
原型 - unset() 方法
此方法删除哈希键的属性并返回其值。如果在哈希中没有找到该键,则无所操作并返回 undefined。
语法
hash.unset(key);
返回值
返回已删除键的值。
示例
<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' }); // Returns 'apple' alert( "h.unset('a') : " + h.unset('a') ); } </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
广告