atEnd 方法
更新:2007 年 11 月
返回一个布尔值,通过该值指示枚举数是否位于集合的末尾。
function atEnd() : Boolean
备注
如果当前项是集合中的最后一个项,或者集合为空,或者当前项未定义,则 atEnd 方法返回 true。否则,返回 false。
示例
在下面的代码中,使用了 atEnd 方法来确定是否到达了一个驱动器列表的末尾:
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 = "[Drive not ready]";
s += n + "<br>";
}
return(s);
}