codecamp

ASP Key 属性

ASP Key 属性


Dictionary 对象参考手册 完整的 Dictionary 对象参考手册

Key 属性在 Dictionary 对象中为已有的 key 设置新值。

语法

DictionaryObject.Key(key)=newkey

参数 描述
key 必需的。需修改的 key 的名称。
newkey 必需的。key 的新名称。

实例

<%
Dim d
Set d=Server.CreateObject("Scripting.Dictionary")
d.Add "re","Red"
d.Add "gr","Green"
d.Add "bl","Blue"
d.Add "pi","Pink"
d.Key("re")="r"
Response.Write("The value of key r is: " & d.Item("r"))
%>

输出:

The value of key r is: Red


Dictionary 对象参考手册 完整的 Dictionary 对象参考手册
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

ASP 实例

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }