item方法

item方法

item 方法返回當前項。 如果集合為空或者當前項沒有定義,那么將返回undefined 。

item 方法

返回集合中的當前項。

enumObj.item()

必選項 myEnum 參數為任意 Enumerator 對象。

示例

在下面的代碼中,使用了 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);

}

相關詞條

相關搜尋

熱門詞條

聯絡我們