item 方法
时间:2007-12-27 来源:不详 作者:林子
返回集合中的当前项。 织梦内容管理系统
enumObj.item()
织梦内容管理系统
必选项 myEnum 参数为任意 Enumerator 对象。
copyright dedecms
说明
item 方法返回当前项。 假如集合为空或者当前项没有定义,那么将返回undefined 。
dedecms.com
示例
在下面的代码中,使用了 item 方法返回 Drives 集合中的一个成员。 内容来自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);
}
内容来自dedecms
上一篇:join 方法 下一篇:italics 方法
文章评论
共有位Admini5网友发表了评论 查看完整内容