HBCMS更多的中文手册参考:

frames Collection

DHTML文档教程

Retrieves a collection of all window objects defined by the given document or defined by the document associated with the given window.

dhtml语法

[ oColl = ] object.frames
[ oObject = ] object.frames(vIndex [, iSubIndex])

DHTML可能的值

oCollArray of window objects.
oObjectReference to an individual item in the array of elements contained by the object.
vIndexRequired. Integer or string that specifies the element or collection to retrieve. If this parameter is an integer, the method returns the element in the collection at the given position, where the first element has value 0, the second has 1, and so on. If this parameter is a string and there is more than one element with the name or id property equal to the string, the method returns a collection of matching elements.
isubindexoptional. position of an element to retrieve. this parameter is used when vindex is a string. the method uses the string to construct a collection of all elements that have a name or id property equal to the string, and then retrieves from this collection the element at the position specified by isubindex.

members table

PropertyDescription
length Sets or retrieves the number of objects in a collection.
MethodDescription
item Retrieves an object from the filters collection or various other collections.
nameditem   Retrieves an object or a collection from the specified collection.

Remarks

If the HTML source document contains a body tag, the collection contains one window for each iframe object in the document. if the source document contains frameset tags, the collection contains one window for each frame tag in the document. in both cases, the order is determined by the html source.

this collection contains only window objects and does not provide access to the corresponding frame and iframe objects. to access these objects, use the all collection for the document containing the objects.

although you can use names with the item method on this collection, the method never returns a collection. instead, it always returns the first window having the given name. to ensure that all windows are accessible, make sure that no two windows in a document have the same name.

Examples

This example in JScript® (compatible with ECMA 262 language specification) shows how to display the URLs of the HTML documents contained in windows created by the iframe objects in the document.

var frm = document.frames;
for (i=0; i < frm.length; i++)
alert(frm(i).location);

This example in JScript shows how to display the name of each window defined by frame tags in the parent window of the current document.

var frm = window.parent.frames;
for (i=0; i < frm.length; i++)
alert(frm(i).name);

是否符合公共标准

There is no public standard that applies to this collection.

Applies To

document, window