©
Dieses Dokument verwendetPHP-Handbuch für chinesische WebsitesFreigeben
JScript | 语言参考 |
如果Dictionary对象中存在所指定的主键则返回true,否则返回false。
object.Exists(key)
object
必选项。总是一个Dictionary对象的名称。
key
必选项。需要在Dictionary对象中搜索的key值。
下面这个例子说明了Exists方法的用法。
function keyExists(k) {
var fso, s = "";
d = new ActiveXObject("Scripting.Dictionary");
d.Add("a", "Athens");
d.Add("b", "Belgrade");
d.Add("c", "Cairo");
if (d.Exists(k))
s += "Specified key exists.";
else
s += "Specified key doesn't exist.";
return(s);
}
Add 方法 (Dictionary) | Items 方法 | Keys 方法 | Remove 方法 | RemoveAll 方法应用于: Dictionary 对象