ECMA Script for XML (E4X) Question:
Download Job Interview Questions and Answers PDF
Using E4X how can we define XML document as a JavaScript object?
Answer:
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
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
Download E4X Interview Questions And Answers
PDF
Previous Question | Next Question |
Using E4X how can we make XML easier to use? | Tell me how can we use E4X in Mozilla and Mozilla Based browsers? |