CHAMPION KAY TUTORIAL

XML - E4X


EXAMPLE:

var employees=
<employees>
<person>
    <name>Tove</name>
    <age>32</age>
</person>
<person>
    <name>Jani</name>
    <age>26</age>
</person>
</employees>;

document.write(employees.person.(name == "Tove").age);

This example works in Firefox only!

XML As a JavaScript Object

E4X is an official JavaScript standard that adds direct support for XML.
With E4X, you can declare an XML object variable the same way as you declare a Date or an Array object variable:

EXAMPLE:

var x = new XML()

var y = new Date()

var z = new Array()

E4X is an ECMAScript (JavaScript) Standard

ECMAScript is the official name for JavaScript. ECMA-262 (JavaScript 1.3) was standardized in December 1999.
E4X is an extension of JavaScript that adds direct support for XML. ECMA-357 (E4X) was standardized in June 2004.
The ECMA organization (founded in 1961) is dedicated to the standardization of Information and Communication Technology (ICT) and Consumer Electronics (CE). ECMA has developed standards for:
  • JavaScript
  • C# Language
  • International Character Sets
  • Optical Disks
  • Magnetic Tapes
  • Data Compression
  • Data Communication
  • and much more...

Without E4X

The following example is a cross browser example that loads an existing XML document ("note.xml") into the XML parser and displays the message from the note:

EXAMPLE:


var xmlDoc;
//code for Internet Explorer
if (window.ActiveXObject)
{
xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.async=false;
xmlDoc.load("note.xml");
displaymessage();
}
// code for Mozilla, Firefox, etc.
else (document.implementation && document.implementation.createDocument)
{
xmlDoc= document.implementation.createDocument("","",null);
xmlDoc.load("note.xml");
xmlDoc.onload=displaymessage;
}

function displaymessage()
{
document.write(xmlDoc.getElementsByTagName("body")[0].firstChild.nodeValue);
}




With E4X

The following example is the same as above but using E4X:

EXAMPLE:

var xmlDoc=new XML();
xmlDoc.load("note.xml");
document.write(xmlDoc.body);

Much simpler, isn't it?

Browser Support

Firefox is currently the only browser with relatively good support for E4X.
There are currently no support for E4X in OperaChrome, or Safari.
So far there is no indication for of E4X support in Internet Explorer.

0 comments:

Post a Comment