www.fgks.org   »   [go: up one dir, main page]

namedItem Method

Retrieves an object or a collection from the specified collection.

Syntax

oItem = object.namedItem(sName)

Parameters

sName Required. A String that specifies the name or id property of the object to retrieve. A collection is returned if more than one match is made.

Return Value

Returns an object or a collection of objects if successful, or null otherwise.

Remarks

namedItem was introduced in Microsoft Internet Explorer 6

This method first searches for an object with a matching id attribute. If a match is not found, then the method searches for an object with a matching name attribute, but only on those elements that are allowed a name attribute.

Example

The following example shows how to use the namedItem method to retrieve a div and change its innerText property.

    <DIV id="oDIV1">This text will not change.</DIV>
    <DIV id="oDIV2">This text will change.</DIV>
    <BUTTON >
        Change Option
    </BUTTON>

Standards Information

This method is defined in World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 World Wide Web link.

Applies To

all, anchors, applets, areas, boundElements, cells, elements, embeds, forms, images, links, mimeTypes, options, plugins, rows, scripts, tBodies, FORM, filters, frames, imports, styleSheets, TextRange, TextRectangle


MSDN Library
Web Development
HTML and CSS
HTML and DHTML Reference
Methods
namedItem (all, applets, anchors, ...)