atEnd 方法
时间:2007-12-27 来源:不详 作者:林子
返回一个 Boolean 值,指明枚举算子是否位于集合的末尾。 copyright dedecms
myEnum.atEnd()
内容来自dedecms
必选项 myEnum 参数是任意 Enumerator 对象。 织梦内容管理系统
说明
假如当前项是集合中的最后一个,或者集合为空,或者当前项没有定义,那么 atEnd 方法将返回 true 。否则返回 false 。 dedecms.com
示例
在下面的代码中,使用了 atEnd 方法来决定是否到达了一个驱动器列表的末尾:
内容来自dedecms
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);
}本文来自织梦
文章评论
共有位Admini5网友发表了评论 查看完整内容