Ver Mensaje Individual
  #2 (permalink)  
Antiguo 14/01/2003, 07:52
Avatar de DanielRey
DanielRey
Usuario no validado
 
Fecha de Ingreso: enero-2001
Ubicación: Mendoza
Mensajes: 630
Antigüedad: 23 años, 3 meses
Puntos: 1
Hola Xias

El iframe provee estas colecciones:

all, children

all:
Description

Returns an object reference to the collection of elements contained by the object.

Syntax
object.all(index)


Parameter Description
object An object that can contain elements such as the document.
(index) Optional. An integer or a string specifying the index value of the element to retrieve. Integer indexes are zero-based, meaning the first element in the collection has index 0. A string index is valid only if the string is a name or identifier of at least one element in the document.

children:
Description

Retrieves only the direct descendants of an element. The elements contained in this collection are undefined if the child elements are overlapping tags. Similar to the all collection.

Syntax
object.children(index)



Parameter Description
object The document object.
(index) Optional. An integer or a string specifying the index value of the element to retrieve. Integer indexes are zero-based, meaning the first element in the collection has index 0. A string index is valid only if the string is a name or identifier of at least one element in the document.

Suerte