Answers

Question and Answer:

  Home  E4X

⟩ Using E4X how can we define XML document as a JavaScript object?

I have given you example to show XML document as JavaScript object.Example:

I have you simple XML document.

<message>

<date>2009-26-01</date>

<to>Abhi</to>

<from>Sud</from>

<heading>Don't forget</heading>

<body>Happy Birthday!</body>

</message> We can store this XML document in a string calles as message into an XML object variable vusing JavaScript.var v = new XML(message) 'or' Assign the XML text to the XML object variable directly.var v = new XML()v=<message>

<date>2009-26-01</date>

<to>Abhi</to>

<from>Sud</from>

<heading>Don't forget</heading>

<body>Happy Birthday!</body>

</message>

We can use JavaScript like that,document.write(v.from)

Output:Sud

 208 views

More Questions for you: