精品熟女碰碰人人a久久,多姿,欧美欧美a v日韩中文字幕,日本福利片秋霞国产午夜,欧美成人禁片在线观看

ASP Item 屬性

asp item 屬性

dictionary 對(duì)象參考手冊(cè) 完整的 dictionary 對(duì)象參考手冊(cè)

item 屬性設(shè)置或返回 dictionary 對(duì)象中某個(gè)項(xiàng)目的值。

語法

dictionaryobject.item(key)[=newitem]

參數(shù) 描述
key 必需的。與 item 相關(guān)聯(lián)的 key。
newitem 可選的。規(guī)定與 key 相關(guān)聯(lián)的值。

實(shí)例

<%
dim d
set d=server.createobject("scripting.dictionary")
d.add "re","red"
d.add "gr","green"
d.add "bl","blue"
d.add "pi","pink"
response.write("the value of key pi is: " & d.item("pi"))
%>

輸出:

the value of key pi is: pink

dictionary 對(duì)象參考手冊(cè) 完整的 dictionary 對(duì)象參考手冊(cè)
相關(guān)文章