请输入您要查询的百科知识:

 

词条 item方法
释义

item 方法

返回集合中的当前项。

enumObj.item()

必选项 myEnum 参数为任意 Enumerator 对象。

说明

item 方法返回当前项。 如果集合为空或者当前项没有定义,那么将返回undefined 。

示例

在下面的代码中,使用了 item 方法返回 Drives 集合中的一个成员。

function ShowDriveList(){

var fso, s, n, e, x;

fso = new ActiveXObject("Scripting.FileSystemObject");

e = new Enumerator(fso.Drives);

s = "";

for (; !e.atEnd(); e.moveNext())

{

x = e.item();

s = s + x.DriveLetter;

s += " - ";

if (x.DriveType == 3)

n = x.ShareName;

else if (x.IsReady)

n = x.VolumeName;

else

n = "[驱动器未就绪]";

s += n + "<br>";

}

return(s);

}

随便看

 

百科全书收录4421916条中文百科知识,基本涵盖了大多数领域的百科知识,是一部内容开放、自由的电子版百科全书。

 

Copyright © 2004-2023 Cnenc.net All Rights Reserved
更新时间:2024/12/23 12:09:07