![]() |
XML Data Islands
There is an increasing need to be able to embed "islands" of data inside HTML pages. In Microsoft® Internet Explorer 5, these "data islands" can be written in Extensible Markup Language (XML). This article describes the syntax used for embedding these data islands within a page, and details the object model exposed by the browser to enable them to be used. This method of embedding XML in HTML follows the note published by the W3C as the XML in HTML Meeting Report Embedding an XML Data Island into an HTML PageAn XML data island can be embedded using one of two methods: Using the XML Element Within the HTML DocumentThis syntax is valid for Internet Explorer 5. There are two syntactically correct ways of using the XML element within the HTML document:
The XML element is present in the HTML Document Object Model. It is in the all The XMLDocument property returns the root node of the XML within the XML element or the root node of the XML referenced by the value of the SRC attribute. From this root, the XML data island can be navigated using the XML document object model. The following function returns the data from the data island with the ID of "XMLID". function returnXMLData(){ return document.all("XMLID").XMLDocument.nodeValue; } The XML element can also be referenced by ID alone. For example, the following function has the identical functionality as the previous example. function returnXMLData(){ return XMLID.documentElement.text; } Note that because the XMLDocument property was not used, the documentElement Overloading the HTML SCRIPT ElementThis syntax has been deprecated and is intended only for down-level cases. There are three syntactically correct ways of overloading the SCRIPT
The following HTML fragment illustrates how to embed data by overloading the SCRIPT element. <SCRIPT ID="XMLID" LANGUAGE="XML"> <XMLDATA> <DATA>TEXT</DATA> </XMLDATA> </SCRIPT> The SCRIPT element is present in the HTML page's object model (it is in the all The following script accesses the XML data island in the above HTML fragment and returns the name of the root node of the XML data island. function returnIslandRootName(){ var islandRoot = document.all.("SCRIPT").XMLDocument; return islandRoot.nodeName; } Note that a tag that uses the name "XML" cannot be nested within an XML data island.
|
|
© 1999 Microsoft Corporation. All rights reserved. Terms of Use. |